diff options
author | Stefano <l.stickell@yahoo.it> | 2014-04-18 17:07:06 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-18 17:07:06 +0200 |
commit | 71d58aa484ab332cad1eda29edf2df7bfc4e2e91 (patch) | |
tree | 021336201f835a5d5f1bda2aad976041c961363d /module/plugins/hooks/ExternalScripts.py | |
parent | Bayfiles: relogin requires user argument (diff) | |
download | pyload-71d58aa484ab332cad1eda29edf2df7bfc4e2e91.tar.xz |
Fixed PEP8 violations
Diffstat (limited to 'module/plugins/hooks/ExternalScripts.py')
-rw-r--r-- | module/plugins/hooks/ExternalScripts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/ExternalScripts.py b/module/plugins/hooks/ExternalScripts.py index efd28ab17..3d84dcc3d 100644 --- a/module/plugins/hooks/ExternalScripts.py +++ b/module/plugins/hooks/ExternalScripts.py @@ -51,7 +51,7 @@ class ExternalScripts(Hook): for script_type, names in self.scripts.iteritems(): if names: - self.logInfo((_("Installed scripts for %s: ") % script_type ) + ", ".join([basename(x) for x in names])) + self.logInfo((_("Installed scripts for %s: ") % script_type) + ", ".join([basename(x) for x in names])) def initPluginType(self, folder, path): if not exists(path): |