Compare commits

...

7 Commits

Author SHA1 Message Date
backups@services.home a365c9fb67 Merge branch 'master' into dev 2024-02-25 18:20:57 -08:00
backups@services.home 5f7ad327d9 hooks 2024-02-25 18:20:10 -08:00
backups@services.home fb42c14505 hooks 2024-02-25 18:18:00 -08:00
backups@services.home 4090770b09 hooks 2024-02-25 18:16:43 -08:00
backups@services.home 9d39f6c927 hooks 2024-02-25 18:06:19 -08:00
backups@services.home 83df9d7981 disk-usage-warn: Fix invalid escape sequence for python 12 2024-02-25 17:59:01 -08:00
mike 1b3d4cc204 noop to test hook 2020-01-02 10:44:30 -08:00
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class DiskUsageWarn:
for file_name in os.listdir(path):
one_config_path = os.path.join(path, file_name)
if re.match(".+\.yaml$", file_name):
if re.match(r".+\.yaml$", file_name):
self.log("Found yaml: " + file_name)
self.consume_config(one_config_path)
else: