From 8ac114c01777f34f670f2552f3dc4a15b65d45a4 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 11 Apr 2006 03:30:10 +0000 Subject: [PATCH] Removed unneeded 'import sys' from base.py handler git-svn-id: http://code.djangoproject.com/svn/django/trunk@2668 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/core/handlers/base.py b/django/core/handlers/base.py index 3ed1a33325..fd3a3ccae1 100644 --- a/django/core/handlers/base.py +++ b/django/core/handlers/base.py @@ -134,7 +134,6 @@ class BaseHandler: Returns an HttpResponse that displays a TECHNICAL error message for a fundamental database or coding error. """ - import sys from django.views import debug if is404: return debug.technical_404_response(request, exception)