From 83484cc109baf6aad645e7cace2183c2b7f9c181 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sun, 11 Sep 2011 00:52:03 +0000 Subject: [PATCH] Fixed #14138 -- Removed a superfluous import in the sqlite3 DB backend. This could be of help with some issues people were seeing when deploying Django with sqlite and Apache. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16799 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/sqlite3/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index b45c0fb935..49b87a8da8 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -330,7 +330,6 @@ def _sqlite_format_dtdelta(dt, conn, days, secs, usecs): return rv def _sqlite_regexp(re_pattern, re_string): - import re try: return bool(re.search(re_pattern, re_string)) except: