remvoe unneeded paren

This commit is contained in:
Kevin Hester committed 2024-06-29 08:40:16 -07:00
1 parent 542f99b28f
commit 821d3e95f1
1 file changed
+1 -1
+1 -1
View File
@@ -131,7 +131,7 @@ class StructuredLogger:
args = m.group(2)
args += " " # append a space so that if the last arg is an empty str it will still be accepted as a match
logging.debug(f"SLog {src}, reason: {args}")
if(src != "PM"):
if src != "PM":
logging.warning(f"Not yet handling structured log {src} (FIXME)")
else:
d = log_defs.get(src)