Opened 16 years ago

Closed 16 years ago

#7527 closed (fixed)

extraneous entry in django.core.servers.basehttp.__all__

Reported by: Trevor Caira Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

>>> from django.core.servers.basehttp import *
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'demo_app'

Attachments (1)

basehttp.diff (495 bytes ) - added by Trevor Caira 16 years ago.
remove extraneous 'demo_app' entry from all

Download all attachments as: .zip

Change History (3)

by Trevor Caira, 16 years ago

Attachment: basehttp.diff added

remove extraneous 'demo_app' entry from all

comment:1 by Alex Gaynor, 16 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Adrian Holovaty, 16 years ago

Resolution: fixed
Status: newclosed

(In [7746]) 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

Note: See TracTickets for help on using tickets.
Back to Top