Commit c5140e1a by user

fixing domain info return list string to append

parent 86436334
......@@ -112,7 +112,7 @@ def list_domains():
domain_list = []
for i in connection.listDomainsID():
dom = connection.lookupByID(i)
domain_list += dom.name()
domain_list.append(dom.name())
return domain_list
......
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 sign in to comment