web/views/basecontrollers.py
branchstable
changeset 6207 c3f11fadf9ed
parent 6204 fd6d8f4d1904
child 6225 a176e68b7d0d
child 6237 0c886f667b1f
--- a/web/views/basecontrollers.py	Fri Sep 10 15:09:26 2010 +0200
+++ b/web/views/basecontrollers.py	Fri Sep 10 15:09:31 2010 +0200
@@ -291,7 +291,8 @@
         try:
             args = [json.loads(arg) for arg in args]
         except ValueError, exc:
-            self.exception('error while decoding json arguments for js_%s: %s', fname, args, exc)
+            self.exception('error while decoding json arguments for js_%s: %s',
+                           fname, args, exc)
             raise RemoteCallFailed(repr(exc))
         try:
             result = func(*args)