diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-21 19:19:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-21 19:19:06 +0200 |
commit | 15fd5e2c3cfee083f1c562a7e3ccdf657d16acee (patch) | |
tree | 80369e0fb9835db63089875e6f4e3963f501437d /archaeological_operations/wizards.py | |
parent | 42fe76e7bb82923acefed07b2e700d1e1ef88e1e (diff) | |
download | Ishtar-15fd5e2c3cfee083f1c562a7e3ccdf657d16acee.tar.bz2 Ishtar-15fd5e2c3cfee083f1c562a7e3ccdf657d16acee.zip |
Fix parcel formset initialisation
Diffstat (limited to 'archaeological_operations/wizards.py')
-rw-r--r-- | archaeological_operations/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py index 07206cc18..b9ff96cad 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -250,7 +250,7 @@ class OperationWizard(Wizard): post_data = request.POST.copy() # add all parcel from available in the archaeological file - if not post_data.get('add_all_parcels'): + if not post_data.get('add_all_parcels', None): return super(OperationWizard, self).post(*args, **kwargs) file = self.get_current_file() |