Changes between Initial Version and Version 3 of Ticket #4700
- Timestamp:
- Jun 26, 2007, 9:57:15 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4700 – Description
initial v3 1 1 urlresolvers.get_callable is raising an exception in "manage.py test" mode for any {% url %} tag: 2 {{{ 3 #!python 2 4 self.reverse_dict[pattern.callback] = (pattern,) 3 5 File "/Users/phausel/site-packages/django/core/urlresolvers.py", line 152, in _get_callback … … 10 12 'AutoField' : _('Integer'), 11 13 TypeError: 'str' object is not callable 12 14 }}} 13 15 (The weird thing is that it occurs only when running the built in test feature.) 14 16