Changes between Initial Version and Version 4 of Ticket #18697
- Timestamp:
- Nov 30, 2012, 7:18:31 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18697
- Property Cc added
- Property Needs tests set
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
-
Ticket #18697 – Description
initial v4 1 1 This appears to be a simple coding error. 2 2 3 I have code (mobile-admin) that sets index_template to ['admin/index.html', 'index.html']. The current call ends up passing [['admin/index.html', 'index.html']] to TemplateResponse, which fails with a TypeError trying to use ['admin/index.html', 'index.html']as a template.3 I have code (mobile-admin) that sets index_template to `['admin/index.html', 'index.html']`. The current call ends up passing `[['admin/index.html', 'index.html']]` to `TemplateResponse`, which fails with a `TypeError` trying to use `['admin/index.html', 'index.html']` as a template. 4 4 5 5 The following patch fixes this issue: