summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cli/cli.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/cli.py b/cli/cli.py
index db52b4c..f2175a7 100644
--- a/cli/cli.py
+++ b/cli/cli.py
@@ -32,8 +32,8 @@ class OgREST():
headers=self.HEADERS,
json=payload)
if r.status_code != 200:
- sys.exit(f"Cannot connect to ogServer: "
- f"{r.status_code} HTTP status code")
+ sys.exit(f"Unsuccessful request to ogServer: "
+ f"Response with {r.status_code} HTTP status code")
except IOError as e:
sys.exit(f"Cannot connect to ogServer: {e}")
return r
@@ -45,8 +45,8 @@ class OgREST():
json=payload)
print(r.text)
if r.status_code not in {200, 202}:
- sys.exit(f"Cannot connect to ogServer: "
- f"{r.status_code} HTTP status code")
+ sys.exit(f"Unsuccessful request to ogServer: "
+ f"Response with {r.status_code} HTTP status code")
except IOError as e:
sys.exit(f"Cannot connect to ogServer: {e}")
return r
@@ -59,7 +59,7 @@ class OgREST():
print(r.text)
if r.status_code != 200:
sys.exit(f"Unsuccessful request to ogServer: "
- f"{r.status_code} HTTP status code")
+ f"Response with {r.status_code} HTTP status code")
except IOError as e:
sys.exit(f"Cannot connect to ogServer: {e}")
return r