web/views/basecontrollers.py
branchstable
changeset 5141 9ea2250cd049
parent 5139 61b607c8571b
child 5151 2f70fa8b6854
--- a/web/views/basecontrollers.py	Fri Apr 02 14:36:54 2010 +0200
+++ b/web/views/basecontrollers.py	Fri Apr 02 14:40:32 2010 +0200
@@ -280,7 +280,7 @@
             args = [simplejson.loads(arg) for arg in args]
         except ValueError, exc:
             self.exception('error while decoding json arguments for js_%s: %s', fname, args, exc)
-            raise RemoteCallFailed(repr(exc)
+            raise RemoteCallFailed(repr(exc))
         try:
             result = func(*args)
         except RemoteCallFailed: