Changes between Initial Version and Version 4 of Ticket #18697


Ignore:
Timestamp:
Nov 30, 2012, 7:18:31 AM (11 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18697

    • Property Cc travis@… added
    • Property Needs tests set
    • Property Owner changed from nobody to Travis Swicegood
    • Property Triage Stage UnreviewedAccepted
  • Ticket #18697 – Description

    initial v4  
    11This appears to be a simple coding error.
    22
    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.
     3I 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.
    44
    55The following patch fixes this issue:
Back to Top