diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-03-04 16:56:42 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-03-04 16:56:42 +0100 |
commit | 6027775ed86219dd562e3860b28f225c2d0b7f77 (patch) | |
tree | a52d22319b15feda35756c609d1f0e4c6b2efc6a | |
parent | 907cffab1885217f27fc54446d02536f8103f57b (diff) | |
download | Ishtar-6027775ed86219dd562e3860b28f225c2d0b7f77.tar.bz2 Ishtar-6027775ed86219dd562e3860b28f225c2d0b7f77.zip |
Fix town list from archaeological files to operations (refs #1695)
-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 ed568a943..cc9e87118 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -92,7 +92,7 @@ class OperationWizard(Wizard): Obtention des villes disponibles """ general_form_key = 'general-' + self.url_name - if FILES_AVAILABLE: + if not FILES_AVAILABLE: return -1 towns = [] file_id = self.session_get_value(general_form_key, "associated_file") |