Diff
Differences From Artifact [60345f8f8f]:
- File channels/radiotray.py — part of check-in [ebae9e51ac] at 2015-04-21 06:05:56 on branch trunk — Replace old __print__/dbg.XYZ references with new log.XYZ() wrapper. (user: mario, size: 4620) [annotate] [blame] [check-ins using]
To Artifact [f195cf603e]:
- File channels/radiotray.py — part of check-in [363dce5eb9] at 2015-04-26 15:35:21 on branch trunk — Cover most catched exceptions with log messages. (user: mario, size: 4693) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
87 88 89 90 91 92 93 |
for bookmark in group.findall("bookmark"):
r.append({
"genre": group.attrib["name"],
"title": bookmark.attrib["name"],
"url": bookmark.attrib["url"],
"playing": "",
})
| | | | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
for bookmark in group.findall("bookmark"):
r.append({
"genre": group.attrib["name"],
"title": bookmark.attrib["name"],
"url": bookmark.attrib["url"],
"playing": "",
})
except Exception as e:
log.DATA("Extracting from radiotray bookmarks.xml failed:", e)
return r
# send to
def share(self, *w):
row = self.parent.row()
if row:
|
| ︙ | ︙ |