diff options
author | 2014-10-28 16:52:10 +0100 | |
---|---|---|
committer | 2014-10-28 16:52:10 +0100 | |
commit | 34984dae733c3f3d47b41a0acfba3724d53c65a1 (patch) | |
tree | c8d970f64dacfc64cb72bf82c85d7467c99f7264 /module/plugins/hooks/HotFolder.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/hooks/HotFolder.py')
-rw-r--r-- | module/plugins/hooks/HotFolder.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/HotFolder.py b/module/plugins/hooks/HotFolder.py index 00eac266c..d7e8093b3 100644 --- a/module/plugins/hooks/HotFolder.py +++ b/module/plugins/hooks/HotFolder.py @@ -10,8 +10,8 @@ from module.plugins.Hook import Hook class HotFolder(Hook): - __name__ = "HotFolder" - __type__ = "hook" + __name__ = "HotFolder" + __type__ = "hook" __version__ = "0.11" __config__ = [("folder", "str", "Folder to observe", "container"), @@ -20,8 +20,8 @@ class HotFolder(Hook): ("file", "str", "Link file", "links.txt")] __description__ = """Observe folder and file for changes and add container and links""" - __license__ = "GPLv3" - __authors__ = [("RaNaN", "RaNaN@pyload.de")] + __license__ = "GPLv3" + __authors__ = [("RaNaN", "RaNaN@pyload.de")] def setup(self): |