[Mpuls-commits] r571 - wasko/branches/1.0.5/waskaweb/model

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Aug 13 12:52:40 CEST 2009


Author: teichmann
Date: 2009-08-13 12:52:39 +0200 (Thu, 13 Aug 2009)
New Revision: 571

Modified:
   wasko/branches/1.0.5/waskaweb/model/semantic.py
Log:
Fixed issue426


Modified: wasko/branches/1.0.5/waskaweb/model/semantic.py
===================================================================
--- wasko/branches/1.0.5/waskaweb/model/semantic.py	2009-08-13 10:11:41 UTC (rev 570)
+++ wasko/branches/1.0.5/waskaweb/model/semantic.py	2009-08-13 10:52:39 UTC (rev 571)
@@ -168,7 +168,7 @@
 
     DATE         = re.compile(r"^([0-9]{1,2})\.([0-9]{1,2})\.([0-9]{2,4})$")
     DATE_IDX     = (1, 2, 3)
-    DATE_ISO     = re.compile(r"^([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})$")
+    DATE_ISO     = re.compile(r"^([0-9]{1,4})-([0-9]{1,2})-([0-9]{1,2})$")
     DATE_ISO_IDX = (3, 2, 1)
     YEAR         = re.compile(r"^([0-9]{1,4})$")
 



More information about the Mpuls-commits mailing list