diff options
author | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-22 00:00:13 +0200 |
---|---|---|
committer | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-22 00:00:13 +0200 |
commit | 22d531c192d4b2b3159788d514377c43f8fdde6b (patch) | |
tree | 607d6023bc0e1068415aceefdf54fb611ac30b47 /pyload/plugin/addon | |
parent | some fixes (diff) | |
download | pyload-22d531c192d4b2b3159788d514377c43f8fdde6b.tar.xz |
now the plugin attribute '__name' is no more used it is reduntant and
obsolete
Diffstat (limited to 'pyload/plugin/addon')
-rw-r--r-- | pyload/plugin/addon/ExtractArchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugin/addon/ExtractArchive.py b/pyload/plugin/addon/ExtractArchive.py index b0a24446a..616334af2 100644 --- a/pyload/plugin/addon/ExtractArchive.py +++ b/pyload/plugin/addon/ExtractArchive.py @@ -186,7 +186,7 @@ class ExtractArchive(Addon): traceback.print_exc() if self.extractors: - self.logDebug(*["Found %s %s" % (Extractor.NAME(), Extractor.VERSION) for Extractor in self.extractors]) + self.logDebug(*["Found %s %s" % (Extractor.NAME, Extractor.VERSION) for Extractor in self.extractors]) self.extractQueued() #: Resume unfinished extractions else: self.logInfo(_("No Extract plugins activated")) |