fix __all__ in __init__.py and change version to 0.0.4

This commit is contained in:
2020-11-09 22:23:28 +01:00
parent e8fe7915c1
commit 6504662cb8

View File

@@ -15,7 +15,9 @@
# #
__all__ = [ __all__ = [
"EventMap" "setLoglevel",
"enableSyslog",
"EventMap",
"Watch", "Watch",
"Pyinotifyd", "Pyinotifyd",
"DaemonInstance", "DaemonInstance",
@@ -34,7 +36,7 @@ from pyinotify import ProcessEvent
from pyinotifyd._install import install, uninstall from pyinotifyd._install import install, uninstall
from pyinotifyd.scheduler import TaskScheduler, Cancel from pyinotifyd.scheduler import TaskScheduler, Cancel
__version__ = "0.0.3" __version__ = "0.0.4"
def setLoglevel(loglevel, logname=None): def setLoglevel(loglevel, logname=None):