Merge branch 'master' of github.com:MISP/PyMISP

pull/49/head
Hannah Ward 2017-01-26 13:19:52 +00:00
commit d260dc5ea5
2 changed files with 3 additions and 3 deletions

View File

@ -31,6 +31,6 @@ if __name__ == '__main__':
attribute = temp
break
misp.add_tag(attribute, args.tag, True)
misp.add_tag(attribute, args.tag, attribute=True)
else:
misp.add_tag(event['Event'], args.tag)

View File

@ -174,7 +174,7 @@ class PyMISP(object):
for e in errors:
if not e:
continue
if isinstance(e, str):
if isinstance(e, basestring):
messages.append(e)
continue
for type_e, msgs in e.items():
@ -467,7 +467,7 @@ class PyMISP(object):
# It's a file handle - we can read it
fileData = attachment.read()
elif isinstance(attachment, str):
elif isinstance(attachment, basestring):
# It can either be the b64 encoded data or a file path
if os.path.exists(attachment):
# It's a path!