diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-24 14:24:51 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-24 14:24:51 +0200 |
commit | 669b1e0ec048e1ed8aeb842b2570376e9ad96863 (patch) | |
tree | 4703826f0c65f84ec5e9f1bac2d9dbd50e3376fa /module/plugins/hooks/DeleteFinished.py | |
parent | DebridItaliaCom: two more hosters supported (diff) | |
download | pyload-669b1e0ec048e1ed8aeb842b2570376e9ad96863.tar.xz |
Fixed PEP 8 violations in Hooks
Diffstat (limited to 'module/plugins/hooks/DeleteFinished.py')
-rw-r--r-- | module/plugins/hooks/DeleteFinished.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/DeleteFinished.py b/module/plugins/hooks/DeleteFinished.py index 155158701..3bc98a7b3 100644 --- a/module/plugins/hooks/DeleteFinished.py +++ b/module/plugins/hooks/DeleteFinished.py @@ -1,6 +1,6 @@ - # -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -''' +""" This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, @@ -15,7 +15,7 @@ along with this program; if not, see <http://www.gnu.org/licenses/>. @author: Walter Purcaro -''' +""" from module.database import style from module.plugins.Hook import Hook @@ -70,7 +70,7 @@ class DeleteFinished(Hook): ## event managing ## def addEvent(self, event, func): - '''Adds an event listener for event name''' + """Adds an event listener for event name""" if event in self.m.events: if func in self.m.events[event]: self.logDebug('Function already registered %s' % func) |