diff options
Diffstat (limited to 'pyload/plugin/addon/MergeFiles.py')
-rw-r--r-- | pyload/plugin/addon/MergeFiles.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyload/plugin/addon/MergeFiles.py b/pyload/plugin/addon/MergeFiles.py index d4cecf05d..374604d82 100644 --- a/pyload/plugin/addon/MergeFiles.py +++ b/pyload/plugin/addon/MergeFiles.py @@ -23,11 +23,13 @@ class MergeFiles(Addon): __authors__ = [("and9000", "me@has-no-mail.com")] + interval = 0 #@TODO: Remove in 0.4.10 + BUFFER_SIZE = 4096 def setup(self): - pass + self.info = {} #@TODO: Remove in 0.4.10 @threaded |