We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d077762 commit 942ccc7Copy full SHA for 942ccc7
cleverwrap/cleverwrap.py
@@ -74,7 +74,7 @@ def _send(self, params):
74
# catch errors, print then exit.
75
except requests.exceptions.RequestException as e:
76
print(e)
77
- return r.json()
+ return r.json(strict=False) # Ignore possible control codes in returned data
78
79
80
def _process_reply(self, reply):
0 commit comments