Merge branch 'master' of ssh://git.onelab.eu/git/myslice-django
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 11 Mar 2013 08:27:12 +0000 (09:27 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 11 Mar 2013 08:27:12 +0000 (09:27 +0100)
engine/manifoldapi.py

index c8c3e66..ebb6b4a 100644 (file)
@@ -25,7 +25,7 @@ class ManifoldAPI:
   def __getattr__(self, methodName):
       def func(*args, **kwds):
         result=getattr(self.proxy, methodName)(self.auth, *args, **kwds)
-        if debug: print methodName, self.auth, self.url,'->',result
+        if debug: print '===> backend call',methodName, self.auth, self.url,'->',result
         return result
       return func