X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fmanifoldapi.py;fp=manifold%2Fmanifoldapi.py;h=f23ba20ce3efef25b60042df573b31f2221afdb4;hb=5f03119b3bc1f16e68dd805c4b5773ba1ee7148e;hp=35fd3d74e7c5bbd901fd51174dd2d937e2bfe114;hpb=995713033d9d1c87eb51cdcac1cd7f61d9cbe0d7;p=myslice.git diff --git a/manifold/manifoldapi.py b/manifold/manifoldapi.py index 35fd3d74..f23ba20c 100644 --- a/manifold/manifoldapi.py +++ b/manifold/manifoldapi.py @@ -55,7 +55,11 @@ class ManifoldAPI: try: if debug: print "====> ManifoldAPI.%s"%methodName,"auth",self.auth,"args",args,"kwds",kwds - result=getattr(self.server, methodName)(self.auth, *args, **kwds) + annotations = { + 'authentication': self.auth + } + args += (annotations,) + result=getattr(self.server, methodName)(*args, **kwds) if debug: print '<==== backend call %s(*%s,**%s) returned'%(methodName,args,kwds), print '.ctd. Authmethod=',self.auth['AuthMethod'], self.url,'->',