summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-06-26 04:03:44 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-06-26 04:03:44 +0000
commit8089eec6cf9df08dcca97209c05fd79dee5f2af9 (patch)
treeec7d58e43e6522fe9a836281a678e5c92637895e /django
parent31ee551057598ec1c23610756750ad3b1fff94fe (diff)
Fixed #7527 -- Removed an unused value from __all__ in django.core.servers.basehttp. It had languished there erroneously since the original checkin in Django changeset [174]. Thanks, trevor
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/core/servers/basehttp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py
index 05f8756655..5bdf08b8ca 100644
--- a/django/core/servers/basehttp.py
+++ b/django/core/servers/basehttp.py
@@ -17,7 +17,7 @@ import urllib
from django.utils.http import http_date
__version__ = "0.1"
-__all__ = ['WSGIServer','WSGIRequestHandler','demo_app']
+__all__ = ['WSGIServer','WSGIRequestHandler']
server_version = "WSGIServer/" + __version__
sys_version = "Python/" + sys.version.split()[0]