From 86d9ae269d969f71e44234493f9af529253391c0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 18 Jul 2005 06:34:34 +0000 Subject: [PATCH] Moved django.bin.profiling.handler to django.core.handlers.profiler-hotshot git-svn-id: http://code.djangoproject.com/svn/django/trunk@170 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../profiling/handler.py => core/handlers/profiler-hotshot.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename django/{bin/profiling/handler.py => core/handlers/profiler-hotshot.py} (93%) diff --git a/django/bin/profiling/handler.py b/django/core/handlers/profiler-hotshot.py similarity index 93% rename from django/bin/profiling/handler.py rename to django/core/handlers/profiler-hotshot.py index 7074be8248..953cf0a722 100644 --- a/django/bin/profiling/handler.py +++ b/django/core/handlers/profiler-hotshot.py @@ -1,5 +1,5 @@ import hotshot, time, os -from django.core.handler import ModPythonHandler +from django.core.handlers.modpython import ModPythonHandler PROFILE_DATA_DIR = "/var/log/cmsprofile/"