From: Scott Gasch Date: Sat, 10 Jun 2023 20:37:45 +0000 (-0700) Subject: Fix typo. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=fa007505c87039a35bf606c97813c78e6dadd2e4;p=pyutils.git Fix typo. --- 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: