[00:15] You never know [08:21] hello, I want to report bug with do-release-upgrade tool, but can't find how to do it with web interface only only [08:23] I will give next 5 minutes of my life to Canonical, if someone will point me to quick way, how to do that [08:27] here are details, if someone can utilise it https://pastebin.com/1jTMr4kq bye [09:44] * acheronuk rolls eyes [18:44] Using lptools et al, I'm tring to iterate attributes of a bug. Unfortunately lazr.restfulclient.resource.Entry nor .Resource are iterable (no __iter__() method) - is there something else I'm missing. I'm trying to do "x = {}; for bug in bug_tasks: ... x[bug.id] = dict{bug}" so that later I can call "y = sorted(x, key=lambda b: b.heat, reverse=True)" [22:29] TJ-: why are you trying to convert it to a dict? That doesn't really make sense [22:41] wgrant: because Python's sorted(x, key=lambda..) doesn't seem to like it any other way than as an iterable [22:43] TJ-: sorted cares that the thing it's iterating over is an iterable. It doesn't care that the objects in that iterable are. [22:43] The problem that you're probably running into is that sorted(x) where x is a dict is only going to iterate over the dict's keys. [22:44] x.iteritems() [22:45] is the start of one approach to fix that, yes [22:45] never mind anyhow, I switched to using launchapdlib directly a while back and the scripts are back track :) [22:45] What do you mean? [22:49] I think I was dealing with some limitations of what lptools would expose; but it was several hours ago and I've lost track of the issues now :)