[Pywps-commits] r363 - trunk/pywps/Wps
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Jun 5 14:45:34 CEST 2007
Author: jachym
Date: 2007-06-05 14:45:34 +0200 (Tue, 05 Jun 2007)
New Revision: 363
Modified:
trunk/pywps/Wps/wpsexceptions.py
Log:
bugfix in exceptions
Modified: trunk/pywps/Wps/wpsexceptions.py
===================================================================
--- trunk/pywps/Wps/wpsexceptions.py 2007-06-05 08:19:49 UTC (rev 362)
+++ trunk/pywps/Wps/wpsexceptions.py 2007-06-05 12:45:34 UTC (rev 363)
@@ -82,7 +82,8 @@
self.code = "NoApplicableCode"
self.locator = value
self.make_xml()
- self.ExceptionReport.appendChild(self.document.createComment(repr(locator)))
+ self.ExceptionReport.appendChild(self.document.createComment(
+ repr(self.locator)))
class ServerBusy(WPSException):
def __init__(self,value=None):
More information about the Pywps-commits
mailing list