From cb2115cddb71ade144513210e978b57851c989ed Mon Sep 17 00:00:00 2001 From: aaronsw <> Date: Fri, 10 Nov 2006 23:21:00 +0000 Subject: [PATCH] fix profiling bug (tx spez) --- trunk/web/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/web/http.py b/trunk/web/http.py index 20c10fe6..364adfb6 100644 --- a/trunk/web/http.py +++ b/trunk/web/http.py @@ -224,7 +224,7 @@ def __call__(self, e, o): def profiler(app): """Outputs basic profiling information at the bottom of each response.""" - import profile + from utils import profile def profile_internal(e, o): out, result = profile(app)(e, o) return out + ['
' + net.websafe(result) + '
']