oops, there was a minor error. print(..., file=sys.stDerr) . Typo!

pull/497/head
root 2021-05-04 07:48:30 +00:00
parent 09f0f3943a
commit 117200f334
1 changed files with 1 additions and 1 deletions

View File

@ -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 True
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