Ticket #7527: basehttp.diff

File basehttp.diff, 495 bytes (added by Trevor Caira, 16 years ago)

remove extraneous 'demo_app' entry from all

  • django/core/servers/basehttp.py

     
    1717from django.utils.http import http_date
    1818
    1919__version__ = "0.1"
    20 __all__ = ['WSGIServer','WSGIRequestHandler','demo_app']
     20__all__ = ['WSGIServer','WSGIRequestHandler']
    2121
    2222server_version = "WSGIServer/" + __version__
    2323sys_version = "Python/" + sys.version.split()[0]
Back to Top