Ticket #411: content-type_detect.patch
| File content-type_detect.patch, 0.5 kB (added by mpalmer@hezmatt.org, 2 years ago) |
|---|
-
xmlrpcplugin/0.10/tracrpc/ticket.py
old new 37 37 """ Perform a ticket query, returning a list of ticket ID's. """ 38 38 q = query.Query.from_string(self.env, qstr) 39 39 out = [] 40 for t in q.execute( ):40 for t in q.execute(req): 41 41 out.append(t['id']) 42 42 return out 43 43
