Diff
Differences From Artifact [6db3b80654]:
- File channels/surfmusik.py — part of check-in [4723508e41] at 2014-05-13 22:12:22 on branch trunk — Fix association of surfmusik.de stream URLs to station titles. (user: mario, size: 7757) [annotate] [blame] [check-ins using]
To Artifact [2563179fb4]:
- File channels/surfmusik.py — part of check-in [fd4a1b208c] at 2014-05-26 16:32:49 on branch trunk — Comment out dbg.DATA prints, add some statusbar updating calls. (user: mario, size: 7850) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
121 122 123 124 125 126 127 128 129 130 131 132 133 |
"genre": genre,
"format": ("video/html" if is_tv else "audio/mpeg"),
})
# limit result list
if i > max:
break
i += 1
# done
return entries
| > > | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
"genre": genre,
"format": ("video/html" if is_tv else "audio/mpeg"),
})
# limit result list
if i > max:
break
if i % 10 == 0:
self.parent.status(float(i)/float(max+5))
i += 1
# done
return entries
|