summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/Hoster.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
commit270c1ee85edcd1e9e10511833b422d93dfca192a (patch)
treeeb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/Hoster.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/Hoster.py')
-rw-r--r--pyload/plugin/Hoster.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/Hoster.py b/pyload/plugin/Hoster.py
index 2d43ee845..df778c72f 100644
--- a/pyload/plugin/Hoster.py
+++ b/pyload/plugin/Hoster.py
@@ -9,13 +9,13 @@ def getInfo(self):
class Hoster(Plugin):
- __name__ = "Hoster"
- __type__ = "hoster"
- __version__ = "0.02"
+ __name = "Hoster"
+ __type = "hoster"
+ __version = "0.02"
- __pattern__ = r'^unmatchable$'
- __config__ = [] #: [("name", "type", "desc", "default")]
+ __pattern = r'^unmatchable$'
+ __config = [] #: [("name", "type", "desc", "default")]
- __description__ = """Base hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("mkaay", "mkaay@mkaay.de")]
+ __description = """Base hoster plugin"""
+ __license = "GPLv3"
+ __authors = [("mkaay", "mkaay@mkaay.de")]