From 1a04b34bb45defa74b726557c8f18e0086361e47 Mon Sep 17 00:00:00 2001 From: n Date: Fri, 31 Jan 2025 19:06:34 -0600 Subject: [PATCH] maybe --- bot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 00c2198..52cc6ca 100644 --- a/bot.py +++ b/bot.py @@ -1,5 +1,6 @@ import simplematrixbotlib as botLibrary import json +import fetch with open('config.json', 'r') as f: config = json.load(f) @@ -37,9 +38,10 @@ async def make_choice(room, message): else: id = match.args() id = str(id[1]) + quoteLink = fetch.fetchQuote(id) message = (f""" Command recived (DEBUG). - (We're supposed to fetch quote number {id} now.) + (We're supposed to fetch quote number {id} now, from {quoteLink}.) """) await bot.api.send_text_message(room.room_id, message)