Opened 16 years ago

Closed 16 years ago

#9379 closed (duplicate)

possible error in tutorial 4

Reported by: ben@… Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Given the de-coupling of the URLconfs in tutorial 3, I think the following line:

return HttpResponseRedirect(reverse('mysite.polls.views.results', args=(p.id,)))

would need "mysite" removed to be:

return HttpResponseRedirect(reverse('polls.views.results', args=(p.id,)))

Change History (1)

comment:1 by James Bennett, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #7709, #7660 and #7442. In the future, *please* search for existing tickets before filing new ones.

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