From 111f48dd35531c17c8e0f5f25881198a9c663743 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Sat, 26 Sep 2020 01:43:31 -0400 Subject: [PATCH] Fix icecast updater --- turntable/icecast.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/turntable/icecast.py b/turntable/icecast.py index 07eee03..94d7690 100644 --- a/turntable/icecast.py +++ b/turntable/icecast.py @@ -28,8 +28,7 @@ class Icecast(Process): logger.info("Icecast Updater ready for '%s:%d/%s'", host, port, mountpoint) def set_title(self, title: str) -> None: - return - logging.info("Updating icecast title to '%s'", title) + logger.info("Updating icecast title to '%s'", title) try: requests.get( f"http://{self.host}:{self.port}/admin/metadata",