Changes between Initial Version and Version 1 of Ticket #15056
- Timestamp:
- Jan 12, 2011, 7:22:40 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15056 – Description
initial v1 2 2 3 3 When I add an object, I get this traceback: 4 4 {{{ 5 5 Environment: 6 6 … … 53 53 Exception Type: TypeError at /admin/tc/client/add/ 54 54 Exception Value: 'NoneType' object is not callable 55 }}} 55 56 ____________________________________________ 56 57 … … 60 61 61 62 A hack patch that fixes the problem follows (though it would be good to properly diagnose the problem) 62 63 {{{ 63 64 14a15 64 65 > from django.utils.encoding import smart_unicode 66 }}} 65 67 66