Merge pull request #1 from spacepatcher/spacepatcher-patch-api

Add handling a string response
pull/98/head
Alex Bolshakov 2017-07-12 12:52:31 +03:00 committed by GitHub
commit e17502999c
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ class PyMISP(object):
raise PyMISPError('Unknown error: {}'.format(response.text))
errors = []
if isinstance(to_return, list):
if isinstance(to_return, (list, str)):
to_return = {'response': to_return}
if to_return.get('error'):
if not isinstance(to_return['error'], list):