From 25bee5ee0795ace965be8dcfd76d94f89f00d504 Mon Sep 17 00:00:00 2001 From: Rick Rongen Date: Thu, 1 Aug 2019 13:49:34 +0200 Subject: [PATCH] Removed print from add_remove_group --- Crx/connection.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Crx/connection.py b/Crx/connection.py index c1565ed..bcf7ce1 100644 --- a/Crx/connection.py +++ b/Crx/connection.py @@ -366,6 +366,4 @@ class Connection: 'memberEntry': (None, group_name), } url = self._host + path - resp = self._session.post(url, files=args) - print(resp.text) - return resp.ok + return self._session.post(url, files=args).ok