summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-06-22 16:41:09 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-06-22 16:41:09 +0200
commit3dd3a1253018ef21db08e8116ea6eb5166826f86 (patch)
tree99cacad769bbd4198bea6b2a3826bd20c74fbfb7 /module
parentFilerNet: premium support (diff)
downloadpyload-3dd3a1253018ef21db08e8116ea6eb5166826f86.tar.xz
HotFolder: see
http://forum.pyload.org/viewtopic.php?f=13&t=2735
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/HotFolder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/HotFolder.py b/module/plugins/hooks/HotFolder.py
index ee1031ad5..21ed5ef8e 100644
--- a/module/plugins/hooks/HotFolder.py
+++ b/module/plugins/hooks/HotFolder.py
@@ -30,7 +30,7 @@ from module.plugins.Hook import Hook
class HotFolder(Hook):
__name__ = "HotFolder"
- __version__ = "0.1"
+ __version__ = "0.2"
__description__ = """observe folder and file for changes and add container and links"""
__config__ = [ ("activated", "bool", "Activated" , "False"),
("folder", "str", "Folder to observe", "container"),
@@ -46,7 +46,7 @@ class HotFolder(Hook):
def periodical(self):
- if not exists(join(self.getConfig("folder"), "finished")):
+ if self.getConfig("keep") and not exists(join(self.getConfig("folder"), "finished")):
makedirs(join(self.getConfig("folder"), "finished"))
if self.getConfig("watch_file"):
@@ -82,4 +82,4 @@ class HotFolder(Hook):
self.log.info(_("Added %s from HotFolder") % f)
self.core.api.addPackage(f, [newpath], 1)
- \ No newline at end of file
+