From 3afcddaeb6489c2ebfc6e1a72f34a6b4a78d9589 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Tue, 18 Aug 2026 10:36:52 +0200 Subject: [PATCH] fix default config and raise version to 1.0.1 --- pyinotifyd/__init__.py | 2 +- pyinotifyd/misc/config.py.default | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyinotifyd/__init__.py b/pyinotifyd/__init__.py index 99f4831..82976c6 100644 --- a/pyinotifyd/__init__.py +++ b/pyinotifyd/__init__.py @@ -36,7 +36,7 @@ from pyinotify import ProcessEvent, ExcludeFilter from pyinotifyd._install import install, uninstall from pyinotifyd.scheduler import TaskScheduler, Cancel -__version__ = "1.0.0" +__version__ = "1.0.1" def setLoglevel(loglevel, logname=None): diff --git a/pyinotifyd/misc/config.py.default b/pyinotifyd/misc/config.py.default index a015a15..8ab2da1 100644 --- a/pyinotifyd/misc/config.py.default +++ b/pyinotifyd/misc/config.py.default @@ -36,8 +36,8 @@ #move_rule = Rule( # action="move", -# src_re="^/src_path/(?P.*).to_move", -# dst_re="/dst_path/\\g.moved", +# src_re=r"^/src_path/(?P.*).to_move", +# dst_re=r"/dst_path/\g.moved", # auto_create=True, # filemode=0o755, # dirmode=0o644, @@ -47,7 +47,7 @@ #delete_rule = Rule( # action="delete", -# src_re="^/src_path/(?P.*).to_delete", +# src_re=r"^/src_path/(?P.*).to_delete", # rec=False) #file_sched = FileManagerScheduler(