Changes between Initial Version and Version 1 of Ticket #18463
- Timestamp:
- Jun 11, 2012, 3:02:36 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18463
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
-
Ticket #18463 – Description
initial v1 1 1 I'm getting the following error if I try to run a piece of code through my views.py: 2 2 3 {{{ 3 4 Traceback (most recent call last): 4 5 File "<console>", line 1, in <module> … … 14 15 return type(name, (model,), overrides) 15 16 TypeError: type() argument 1 must be string, not unicode 17 }}} 16 18 17 19 Strangely, if I run a similar code directly in the Django shell, everything goes well. The code looks like this: