From 858ef8d392f8c0b5c3fe2d8b598d571d1f6f3a01 Mon Sep 17 00:00:00 2001 From: Tim Jentzsch Date: Tue, 28 Feb 2023 20:43:59 +0100 Subject: [PATCH] Debug print the data --- bubbles/commands/subreddits.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bubbles/commands/subreddits.py b/bubbles/commands/subreddits.py index b358bc0..11cfb91 100644 --- a/bubbles/commands/subreddits.py +++ b/bubbles/commands/subreddits.py @@ -39,6 +39,7 @@ def subreddits(payload: Payload) -> None: response_txt = "\n".join(f"- r/{sub}: {count}" for (sub, count) in data.items()) payload.say(f"Transcription count by subreddit {time_str}:\n{response_txt}") + payload.say(f"Data: {data}") PLUGIN = Plugin(func=subreddits, regex=r"^subreddits.*")