diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 21:02:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 21:02:39 +0200 |
commit | bdb90b74ed973e9d61c9c6fd35d98ffe4c2d4c20 (patch) | |
tree | 896ff1eaae9151d83be150735c96a37a61d2d038 /pyload/webui/app | |
parent | [api] Improve getConfigValue (diff) | |
parent | fixed: more typos (diff) | |
download | pyload-bdb90b74ed973e9d61c9c6fd35d98ffe4c2d4c20.tar.xz |
Merge pull request #5 from ardi69/0.4.10
fix: assignJob and typos (__name vs. __name__) [2]
Diffstat (limited to 'pyload/webui/app')
-rw-r--r-- | pyload/webui/app/pyloadweb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/app/pyloadweb.py b/pyload/webui/app/pyloadweb.py index f04c6906b..cc2185fd4 100644 --- a/pyload/webui/app/pyloadweb.py +++ b/pyload/webui/app/pyloadweb.py @@ -256,7 +256,7 @@ def config(): name, none, type = desc.partition("_") if type in PYLOAD.core.pluginManager.TYPES: - if name != last_name or len([a for a, b in plugin.iteritems() if b.description.startswith(name + "_")]) > 1: + if name == last_name or len([a for a, b in plugin.iteritems() if b.description.startswith(name + "_")]) > 1: desc = name + " (" + type.title() + ")" else: desc = name |