Commit b2608dbb authored by Marco Mariani's avatar Marco Mariani

removed identity comparison with ''

parent e1c1f61c
...@@ -87,7 +87,7 @@ def init(config): ...@@ -87,7 +87,7 @@ def init(config):
alias = [] alias = []
software_list = [] software_list = []
for software in alias: for software in alias:
if software is not '': if software:
name, url = software.split(' ') name, url = software.split(' ')
software_list.append(name) software_list.append(name)
local[name] = url local[name] = url
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment