summaryrefslogtreecommitdiff
path: root/share/python/lib/files.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/python/lib/files.py')
-rw-r--r--share/python/lib/files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/python/lib/files.py b/share/python/lib/files.py
index 0d622d7..fa219b4 100644
--- a/share/python/lib/files.py
+++ b/share/python/lib/files.py
@@ -89,7 +89,7 @@ def files_file_matches_regex(ctx, filename=None, regex=None):
content = f.read()
m = re.search(regex, content)
if m is None:
- logging.debug(f"files_file_matches_regex: no match")
+ logging.debug("files_file_matches_regex: no match")
logging.debug(f" filenamed: {filename}")
logging.debug(f" regex: {regex}")
logging.debug(f" content: {content}")