From 6c7a7bffd964abd08f7787b7a445da24eb986ff9 Mon Sep 17 00:00:00 2001 From: Brendan Howell Date: Sun, 22 Nov 2020 17:35:00 +0100 Subject: [PATCH] method to add and print radio stations --- screenless/bureau/audio/audio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/screenless/bureau/audio/audio.py b/screenless/bureau/audio/audio.py index d367251..0ce7326 100644 --- a/screenless/bureau/audio/audio.py +++ b/screenless/bureau/audio/audio.py @@ -132,6 +132,7 @@ class Audio(Bureau): """ saves an url for a local file or network audio stream. """ + # TODO: might be nice to save some station info: title, perhaps a logo, etc. code = self.urldb.store_and_get_shortcode(url) self.print_url(code) print("saved url with shortcode: ", code)