From fa007505c87039a35bf606c97813c78e6dadd2e4 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sat, 10 Jun 2023 13:37:45 -0700 Subject: [PATCH] Fix typo. --- src/pyutils/logging_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyutils/logging_utils.py b/src/pyutils/logging_utils.py index cfa674c..b0b0618 100644 --- a/src/pyutils/logging_utils.py +++ b/src/pyutils/logging_utils.py @@ -1241,7 +1241,7 @@ def unhandled_top_level_exception(exc_type: type): args = config.ORIG_ARGV with open(record, 'a') as af: print( - f'{_timestamp}: {program} ({args}) took unhandled top level exception {exc_type}', + f'{_timestamp()}: {program} ({args}) took unhandled top level exception {exc_type}', file=af, ) except Exception: -- 2.46.0