typo fix stable
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 02 Apr 2010 14:40:32 +0200
branchstable
changeset 5141 9ea2250cd049
parent 5140 ef1fcd6f48ff
child 5142 0aa4d348c2e6
typo fix
web/views/basecontrollers.py
--- 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: