Commit a811c865 authored by Vincent Pelletier's avatar Vincent Pelletier

No need to cast to tuple before returning.

parent dfe6d4e5
......@@ -125,7 +125,7 @@ def parseMasterList(masters, except_node=None):
else:
return TypeError, (" Wrong connector type : you're trying to use ipv6 and ipv4 simultaneously")
return tuple(master_node_list), socket_connector
return master_node_list, socket_connector
class Enum(dict):
"""
......
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