[Mpuls-commits] r2913 - waska/branches/1.7/waskaweb/lib
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Jun 8 10:01:17 CEST 2010
Author: torsten
Date: 2010-06-08 10:01:17 +0200 (Tue, 08 Jun 2010)
New Revision: 2913
Modified:
waska/branches/1.7/waskaweb/lib/helpers.py
Log:
Quick fix for exceptions which happens if tags is not iterabel. Reason for that is not clear yet.
Modified: waska/branches/1.7/waskaweb/lib/helpers.py
===================================================================
--- waska/branches/1.7/waskaweb/lib/helpers.py 2010-06-08 07:40:04 UTC (rev 2912)
+++ waska/branches/1.7/waskaweb/lib/helpers.py 2010-06-08 08:01:17 UTC (rev 2913)
@@ -46,14 +46,20 @@
DBS_LIST = {}
def get_validity(tags):
- if 4 in tags: return 5 # ESF-Berichterstattung
- if 3 in tags: return 4 # Grundsätzlich auswertbar
- else: return 0 # nicht wirklich auswertbar
+ try:
+ if 4 in tags: return 5 # ESF-Berichterstattung
+ if 3 in tags: return 4 # Grundsätzlich auswertbar
+ else: return 0 # nicht wirklich auswertbar
+ except:
+ return 0
def get_validity_name(tags):
- if 4 in tags: return 'Berichtsfähig für ESF-Berichterstattung'
- if 3 in tags: return 'Grundsätzlich auswertbar'
- else: return 'Nicht auswertbar'
+ try:
+ if 4 in tags: return 'Berichtsfähig für ESF-Berichterstattung'
+ if 3 in tags: return 'Grundsätzlich auswertbar'
+ else: return 'Nicht auswertbar'
+ except:
+ return 0
def load_db_list_from_file(fname):
if os.path.isfile(fname):
More information about the Mpuls-commits
mailing list