summaryrefslogtreecommitdiff
path: root/cli/bin/libeufin-cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bin/libeufin-cli')
-rwxr-xr-xcli/bin/libeufin-cli12
1 files changed, 10 insertions, 2 deletions
diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
index c2bc5f5d..2499dd6c 100755
--- a/cli/bin/libeufin-cli
+++ b/cli/bin/libeufin-cli
@@ -12,8 +12,16 @@ from urllib.parse import urljoin
from getpass import getpass
-def tell_user(resp, withsuccess=False):
- if resp.status_code != 200:
+# Exit the program according to the HTTP status code that
+# was received.
+def managed_exit(received_status_code, expected_status_code=200):
+ if received_status_code != expected_status_code:
+ sys.exit(1)
+ sys.exit(0)
+
+
+def tell_user(resp, expected_status_code=200, withsuccess=False):
+ if resp.status_code != expected_status_code:
print(resp.content.decode("utf-8"))
return
if withsuccess: