[Pywps-commits] r779 - branches/pywps-3.0/pywps/Parser
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Sun Feb 22 16:33:22 CET 2009
Author: jachym
Date: 2009-02-22 16:33:20 +0100 (Sun, 22 Feb 2009)
New Revision: 779
Modified:
branches/pywps-3.0/pywps/Parser/Execute.py
Log:
merged from trunk, fixed bug, identifier not set
Modified: branches/pywps-3.0/pywps/Parser/Execute.py
===================================================================
--- branches/pywps-3.0/pywps/Parser/Execute.py 2009-02-22 15:32:09 UTC (rev 778)
+++ branches/pywps-3.0/pywps/Parser/Execute.py 2009-02-22 15:33:20 UTC (rev 779)
@@ -203,7 +203,7 @@
try:
identifier = inputNode.getElementsByTagNameNS(
self.owsNameSpace,"Identifier")[0].firstChild.nodeValue
- except IndexError:
+ except (IndexError, AttributeError):
raise self.wps.exceptions.NoApplicableCode(
"Identifier for input not set")
More information about the Pywps-commits
mailing list