mirror of https://github.com/MISP/PyMISP
Add handling a string response
To avoid AttributeError when variable to_return is a string with a value "Pull queued for background execution."pull/98/head
parent
9fc631cc85
commit
8b0c379b7f
|
@ -206,7 +206,7 @@ class PyMISP(object):
|
||||||
raise PyMISPError('Unknown error: {}'.format(response.text))
|
raise PyMISPError('Unknown error: {}'.format(response.text))
|
||||||
|
|
||||||
errors = []
|
errors = []
|
||||||
if isinstance(to_return, list):
|
if isinstance(to_return, (list, str)):
|
||||||
to_return = {'response': to_return}
|
to_return = {'response': to_return}
|
||||||
if to_return.get('error'):
|
if to_return.get('error'):
|
||||||
if not isinstance(to_return['error'], list):
|
if not isinstance(to_return['error'], list):
|
||||||
|
|
Loading…
Reference in New Issue