Commit 0204589b authored by Vincent Pelletier's avatar Vincent Pelletier

Never use a mutable type as named parameters default value.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1243 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 87b0405e
......@@ -248,7 +248,7 @@ class NEOCluster(object):
cursor.close()
sql_connection.close()
def start(self, except_storages=[]):
def start(self, except_storages=()):
neoctl = self.neoctl
assert len(self.process_dict)
for process_list in self.process_dict.itervalues():
......
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