Fix typo where we used wrong var.

pull/105/head
Erik Johnston 2015-01-06 16:05:01 +00:00
parent fd9a8db7ea
commit d5ae67e67d
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ def time_function(f):
_log_debug_as_f(
f,
"[FUNC START] {%s-%d}",
(func_name, _TIME_FUNC_ID),
(func_name, id),
)
r = f(*args, **kwargs)
@ -111,7 +111,7 @@ def time_function(f):
_log_debug_as_f(
f,
"[FUNC END] {%s-%d} %f",
(func_name, _TIME_FUNC_ID, end-start,),
(func_name, id, end-start,),
)
return r