Learn more about these different git repos.
Other Git URLs
7aef123
@@ -5855,7 +5855,7 @@
qopts = {'order' : 'priority,create_time'}
tasklist = session.listTasks(callopts, qopts)
- tasks = {x['id']:x for x in tasklist}
+ tasks = dict([(x['id'], x) for x in tasklist])
#thread the tasks
for t in tasklist:
Reverts a change introduced in the list-tasks --mine patch set which broke support for python 2.6.
nice catch
Pull-Request has been merged by mikem