From 117200f334f612579d1094eedf60cafe85df4cef Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 May 2021 07:48:30 +0000 Subject: [PATCH] oops, there was a minor error. print(..., file=sys.stDerr) . Typo! --- misp_modules/modules/import_mod/cof2misp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misp_modules/modules/import_mod/cof2misp.py b/misp_modules/modules/import_mod/cof2misp.py index 018ad9f..3fe36fc 100755 --- a/misp_modules/modules/import_mod/cof2misp.py +++ b/misp_modules/modules/import_mod/cof2misp.py @@ -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