From 2439bc22671dde697817291b721bfddb792a93b4 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Wed, 10 Dec 2014 19:07:53 +0100 Subject: Fix plugins key attributes --- pyload/plugins/Hoster.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pyload/plugins/Hoster.py') diff --git a/pyload/plugins/Hoster.py b/pyload/plugins/Hoster.py index ea225262e..feb2ae714 100644 --- a/pyload/plugins/Hoster.py +++ b/pyload/plugins/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")] -- cgit v1.2.3