summaryrefslogtreecommitdiff
path: root/ishtar/furnitures/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-11 00:43:22 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-11 00:43:22 +0100
commit0bdb0936333d775c15e40ac8c8f1eadef3885fb0 (patch)
tree2c6ac95f62c72efd28c3d2143227faaed838a0fb /ishtar/furnitures/forms.py
parent6276d665e5ebe74cfeccdfa4ee16563e29dffe5a (diff)
downloadIshtar-0bdb0936333d775c15e40ac8c8f1eadef3885fb0.tar.bz2
Ishtar-0bdb0936333d775c15e40ac8c8f1eadef3885fb0.zip
Correct preventive form condition for archeological file modification (closes #71)
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r--ishtar/furnitures/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py
index 367001bef..5f1b0beb8 100644
--- a/ishtar/furnitures/forms.py
+++ b/ishtar/furnitures/forms.py
@@ -613,6 +613,6 @@ file_modification_wizard = FileWizard([
('preventive-file_modification', FileFormPreventive),
('final-file_modification', FinalForm)],
condition_list={
- 'preventive-file_modification':is_preventive('general-file_modif')
+ 'preventive-file_modification':is_preventive('general-file_modification')
},
url_name='file_modification',)