Ticket #530: query_fix.patch

File query_fix.patch, 0.5 kB (added by mpalmer@hezmatt.org, 2 years ago)
  • xmlrpcplugin/0.10/tracrpc/ticket.py

    old new  
    3737        """ Perform a ticket query, returning a list of ticket ID's. """ 
    3838        q = query.Query.from_string(self.env, qstr) 
    3939        out = [] 
    40         for t in q.execute(): 
     40        for t in q.execute(req): 
    4141            out.append(t['id']) 
    4242        return out 
    4343