Commit 8623bd12 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #2036 -- autoreload.py no longer fails for uninstalled 'thread' module....

Fixed #2036 -- autoreload.py no longer fails for uninstalled 'thread' module. Thanks, plmeister@gmail.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3020 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 45518a05
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -28,7 +28,12 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import os, sys, thread, time
import os, sys, time

try:
    import thread
except ImportError:
    import dummy_thread as thread

RUN_RELOADER = True