From 2b729ca27ada5e40f0a23c759484cc517503dc49 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sat, 10 Jun 2023 13:46:39 -0700 Subject: [PATCH] Fix typo in docs --- 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 dbc8a6f..10b96ee 100644 --- a/src/pyutils/logging_utils.py +++ b/src/pyutils/logging_utils.py @@ -620,7 +620,7 @@ class LoggingContext(contextlib.ContextDecorator): ... logger.info("Working on it now") 10.0.0.13> Working on it now - logger.info("Done with that request") + >>> logger.info("Done with that request") Done with that request LoggingContext can also be used to add temporary handler(s). -- 2.45.0