From b29e24b5d2388a09379fbc4e22694b66081119a8 Mon Sep 17 00:00:00 2001 From: Numerigraphe - Lionel Sausin Date: Mon, 7 Nov 2011 16:45:01 +0100 Subject: [PATCH] [FIX] unmutable defaults in history bzr revid: ls@numerigraphe.fr-20111107154501-relcy0v6w1dl9jjr --- history/check_profile_l10n_all.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/history/check_profile_l10n_all.py b/history/check_profile_l10n_all.py index 719d5ce051b..5c1c1fa9bca 100644 --- a/history/check_profile_l10n_all.py +++ b/history/check_profile_l10n_all.py @@ -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':{}}