From f947f07874d4bd8ee41407bc5944fd4258aac75f Mon Sep 17 00:00:00 2001 From: josiah Date: Sat, 14 Aug 2021 15:20:50 -0500 Subject: [PATCH] Add TODO keyword becuase i forgot whoops --- molly/bot_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molly/bot_commands.py b/molly/bot_commands.py index 21e4996..8c60649 100644 --- a/molly/bot_commands.py +++ b/molly/bot_commands.py @@ -92,7 +92,7 @@ class Command: async def _new_org_todo(self): """Given a plaintext string, return org-formatted todo line.""" formatted_string = " ".join(self.args) - new_string = f"* {formatted_string} \n" + new_string = f"* TODO {formatted_string} \n" await send_text_to_room(self.client, self.room.room_id, f"creating new todo with {new_string}") print(dir(self.config)) with open(self.config.orgmode_refile_path, "a") as orgfile: