From 0b46d28459de9c518ae60be6160f77ade482686b Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Mon, 10 Apr 2023 10:06:15 -0400 Subject: [PATCH] complete doc string for TermEscapeCodeFormatter --- cme/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cme/logger.py b/cme/logger.py index 91824569..7a19a3b3 100755 --- a/cme/logger.py +++ b/cme/logger.py @@ -183,7 +183,7 @@ class CMEAdapter(logging.LoggerAdapter): class TermEscapeCodeFormatter(logging.Formatter): - """A class to strip the escape codes from the """ + """A class to strip the escape codes for logging to files""" def __init__(self, fmt=None, datefmt=None, style='%', validate=True): super().__init__(fmt, datefmt, style, validate)