mirror of https://github.com/MISP/misp-modules
oops, there was a minor error. print(..., file=sys.stDerr) . Typo!
parent
09f0f3943a
commit
117200f334
|
@ -173,7 +173,7 @@ def is_dnsdbflex(data: str) -> bool:
|
||||||
return False # shortcut. We assume it's not if a single line does not conform
|
return False # shortcut. We assume it's not if a single line does not conform
|
||||||
return True
|
return True
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
print("oops, this should not have happened. Maybe not an ndjson file? Reason: %s" % (str(ex),), file=sys.sterr)
|
print("oops, this should not have happened. Maybe not an ndjson file? Reason: %s" % (str(ex),), file=sys.stderr)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue