Skip to content
Snippets Groups Projects
Commit b29e24b5 authored by Lionel Sausin's avatar Lionel Sausin
Browse files

[FIX] unmutable defaults in history

bzr revid: ls@numerigraphe.fr-20111107154501-relcy0v6w1dl9jjr
parent 4651cf93
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,9 @@ def wait(id):
time.sleep(3)
return True
def wizard_run(wizname, fieldvalues={}, endstate='end'):
def wizard_run(wizname, fieldvalues=None, endstate='end'):
if fieldvalues is None:
fieldvalues = {}
wiz_id = sock4.create(dbname, uid, 'admin', wizname)
state = 'init'
datas = {'form':{}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment