Add missing "traceback" import in djangoapp.py.

An except block in DjangoApplicationCommand was referencing traceback
module, which has not been imported.
This commit is contained in:
Bartosz Oler 2010-09-05 01:34:56 +08:00 committed by Paul J. Davis
parent 9be094f9b0
commit 995d060384

View File

@ -5,6 +5,7 @@
import os
import sys
import traceback
from django.core.handlers.wsgi import WSGIHandler
from django.core.servers.basehttp import AdminMediaHandler, WSGIServerException