[Neo-report] r2494 vincent - /trunk/neo/client/app.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Dec 9 17:25:21 CET 2010


Author: vincent
Date: Thu Dec  9 17:25:20 2010
New Revision: 2494

Log:
Use method access factorisation.

Modified:
    trunk/neo/client/app.py

Modified: trunk/neo/client/app.py
==============================================================================
--- trunk/neo/client/app.py [iso-8859-1] (original)
+++ trunk/neo/client/app.py [iso-8859-1] Thu Dec  9 17:25:20 2010
@@ -270,10 +270,10 @@ class Application(object):
                     if is_forgotten:
                         raise ValueError, 'ForgottenPacket for an ' \
                             'explicitely expected packet.'
-                    self._handlePacket(conn, packet, handler=handler)
+                    _handlePacket(conn, packet, handler=handler)
                     break
             elif not is_forgotten and packet is not None:
-                self._handlePacket(conn, packet)
+                _handlePacket(conn, packet)
 
     @profiler_decorator
     def _askStorage(self, conn, packet):




More information about the Neo-report mailing list