mirror of https://github.com/apache/cloudstack.git
- CLOUDSTACK-3229: Fixes string formatting argument mismatch
This commit is contained in:
parent
b9a2b07ceb
commit
cab721529b
|
|
@ -109,7 +109,7 @@ def echo(fn):
|
|||
name = fn.__name__
|
||||
log("enter %s ####" % name)
|
||||
res = fn(*v, **k)
|
||||
log("exit %s with result %s" % name, res)
|
||||
log("exit %s with result %s" % (name, res))
|
||||
return res
|
||||
return wrapped
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue