On Tue, Jun 25, 2013 at 10:38 PM, Olemis Lang <[email protected]> wrote:
> On 6/24/13, [email protected] <[email protected]> wrote: > > Author: rjollos > > Date: Mon Jun 24 13:23:53 2013 > > New Revision: 1496028 > > > > URL: http://svn.apache.org/r1496028 > > Log: > > Whitespace cleanup, removed unused import and replaced `dict` with > > dictionary literal. > > > [...] > > - tm._populate(fakereq, ticket, False) > > - all_fields = dict([f['name'], f] > > - for f in tm._prepare_fields(fakereq, > ticket) > > - if f['type'] == 'select') > > + tm._populate(req, ticket, False) > > + all_fields = { > > + f['name']: f for f in tm._prepare_fields(req, ticket) > > + if f['type'] == 'select' > > + } > > > > It seems after this change (cmiiw) theme plugin will not be loaded in > python 2.6 . Log entry > Thanks for catching that, I had failed to test in Python 2.6. I'll fix it now.
