- CLOUDSTACK-3229: Fixes string formatting argument mismatch

This commit is contained in:
John Burwell 2013-08-01 03:12:18 -04:00
parent b9a2b07ceb
commit cab721529b
1 changed files with 1 additions and 1 deletions

View File

@ -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