#2330: Exceptions are raised when terminating the development server with
USE_I18N
= False
----------------------------------+-----------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: adrian
Type: defect | Status: new
Priority: low | Milestone:
Component: Tools | Version:
Severity: minor | Resolution:
Keywords: |
----------------------------------+-----------------------------------------
Comment (by adrian):
I've found a fix to the problem: Put this in
{{{django/utils/autoreload.py}}} after the 4 {{{ import thread }}} lines
--
{{{
#!python
try:
import threading
except ImportError:
pass
}}}
This is hackish, but it appears to fix the problem for me. Thoughts?
--
Ticket URL: <http://code.djangoproject.com/ticket/2330>
Django <http://code.djangoproject.org/>
The web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---