Changes between Initial Version and Version 2 of Ticket #7768
- Timestamp:
- Jul 21, 2008, 10:29:15 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7768 – Description
initial v2 1 1 Working with SVN revision 7930, following the tutorial, up to the place where the votes view is created. 2 2 The line in the vote() method 3 4 {{{ 3 5 return HttpResponseRedirect(reverse('mysite.polls.views.results', args=(p.id,))) 6 }}} 4 7 5 8 fails presenting a debug page that says: 6 9 10 {{{ 7 11 TypeError at /polls/1/results/ 8 12 'str' object is not callable … … 12 16 Exception Value: 'str' object is not callable 13 17 Exception Location: C:\Python25\lib\site-packages\django\core\handlers\base.py in get_response, line 85 18 }}} 14 19 15 20 I have found some relates issues (like 4700) that point to the INSTALLED_APPS settings and how the django.contrib.auth affects the get_response. I tried eliminating that application and still the error shows.