From 79b9478fafe3c22fb37e8520992522f944a96737 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 25 Feb 2021 15:53:59 -0500 Subject: [PATCH] add new slogan cf. https://tildegit.org/tilderadio/site/pulls/19 --- tilderadio.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tilderadio.py b/tilderadio.py index 0f8da5c..eb1d14d 100644 --- a/tilderadio.py +++ b/tilderadio.py @@ -49,6 +49,7 @@ SLOGANS = [ "that's not what she said!", "not product placement, we promise! (tildestore.com)", "no longer crashes on russian metadata", + "SYNTH TUBA JAZZ VOMIT", ] EMAIL_TEMPLATE = """ {dj} just came on the air on tilderadio.org! @@ -347,7 +348,9 @@ class Module(ModuleManager.BaseModule): topic = event["spec"][0] event["user"].set_setting("tilderadio-djtopic", topic) - event["stdout"].write(f"Set {event['user'].nickname}'s DJ topic to \"{topic}\".") + event["stdout"].write( + f"Set {event['user'].nickname}'s DJ topic to \"{topic}\"." + ) @utils.hook("received.command.djtopic") @utils.kwarg("help", "get the DJ topic for the active DJ or for any DJ")