[Zodb-checkins] CVS: StandaloneZODB/ZEO/zrpc - connection.py:1.1.2.3

Jeremy Hylton jeremy@zope.com
Thu, 17 Jan 2002 19:32:58 -0500


Update of /cvs-repository/StandaloneZODB/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv18206/ZEO/zrpc

Modified Files:
      Tag: Standby-branch
	connection.py 
Log Message:
Add missing closing paren.



=== StandaloneZODB/ZEO/zrpc/connection.py 1.1.2.2 => 1.1.2.3 ===
             if ret is not None:
                 raise ZRPCError("async method %s returned value %s" %
-                                (name, repr(ret))
+                                (name, repr(ret)))
         else:
             if __debug__:
                 log("%s return %s" % (name, short_repr(ret)), zLOG.DEBUG)