equal
deleted
inserted
replaced
1 import os |
|
2 |
|
3 import django.core.handlers.wsgi |
|
4 |
|
5 application = django.core.handlers.wsgi.WSGIHandler() |
|
6 |
|
7 if os.environ.get('PYDEV_DEBUG', "False").lower() in ["true", "1", "t"]: |
|
8 import pydevd #@UnresolvedImport |
|
9 pydevd.settrace(suspend=False) |
|