Index: channels/radionomy.py ================================================================== --- channels/radionomy.py +++ channels/radionomy.py @@ -111,11 +111,11 @@ # Extracts the data- attribute JSON blob @use_rx def data_play_stream(self, html, use_rx): if use_rx: - return [self.entity_decode(j) for j in re.findall('data-play-stream="({.*?})"', html)] + return [entity_decode(j) for j in re.findall('data-play-stream="({.*?})"', html)] else: # fix up for PyQuery, else ignores appended content html = re.sub("|", "", html) + "" return [div.attrib["data-play-stream"] for div in pq(html)(".browseRadioWrap .radioPlayBtn")] @@ -133,48 +133,5 @@ ) except Exception as e: log.ERR("Radionomy title update:", e) - - -""" -
- W1RS blues & Rock's Radio -
-

W1RS blues & Rock's Radio

- - -
- Ratings - - - -
-
- -
-
- -
-
-""" - - - -