Author: ramiro
Date: 2011-09-10 17:52:03 -0700 (Sat, 10 Sep 2011)
New Revision: 16799
Modified:
django/trunk/django/db/backends/sqlite3/base.py
Log:
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.
Modified: django/trunk/django/db/backends/sqlite3/base.py
===================================================================
--- django/trunk/django/db/backends/sqlite3/base.py 2011-09-11 00:15:43 UTC
(rev 16798)
+++ django/trunk/django/db/backends/sqlite3/base.py 2011-09-11 00:52:03 UTC
(rev 16799)
@@ -330,7 +330,6 @@
return rv
def _sqlite_regexp(re_pattern, re_string):
- import re
try:
return bool(re.search(re_pattern, re_string))
except:
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.