summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addon/MergeFiles.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-10 19:07:53 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-10 19:07:53 +0100
commit2439bc22671dde697817291b721bfddb792a93b4 (patch)
treedad4615b7f1d664263af6a85392282329aa0b8e0 /pyload/plugins/addon/MergeFiles.py
parentRevert plugin directory structure (diff)
downloadpyload-2439bc22671dde697817291b721bfddb792a93b4.tar.xz
Fix plugins key attributes
Diffstat (limited to 'pyload/plugins/addon/MergeFiles.py')
-rw-r--r--pyload/plugins/addon/MergeFiles.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugins/addon/MergeFiles.py b/pyload/plugins/addon/MergeFiles.py
index 8a2573409..71ad7a39d 100644
--- a/pyload/plugins/addon/MergeFiles.py
+++ b/pyload/plugins/addon/MergeFiles.py
@@ -12,15 +12,15 @@ from pyload.utils import safe_join, fs_encode
class MergeFiles(Addon):
- __name__ = "MergeFiles"
- __type__ = "addon"
- __version__ = "0.13"
+ __name = "MergeFiles"
+ __type = "addon"
+ __version = "0.13"
- __config__ = [("activated", "bool", "Activated", True)]
+ __config = [("activated", "bool", "Activated", True)]
- __description__ = """Merges parts splitted with hjsplit"""
- __license__ = "GPLv3"
- __authors__ = [("and9000", "me@has-no-mail.com")]
+ __description = """Merges parts splitted with hjsplit"""
+ __license = "GPLv3"
+ __authors = [("and9000", "me@has-no-mail.com")]
BUFFER_SIZE = 4096