aboutsummaryrefslogtreecommitdiff
path: root/lib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/__init__.py')
-rw-r--r--lib/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/__init__.py b/lib/__init__.py
index 2c67b83..edb1b42 100644
--- a/lib/__init__.py
+++ b/lib/__init__.py
@@ -45,12 +45,15 @@ class CommandContext(object):
self.client = client
self.channel = channel
self.message = message
- self.rest_content = re.sub('.*? ', '', message.message)
+ self.rest_content = re.sub('^.*? ', '', message.message)
self.author = message.from_id
def respond(self, text):
self.client.send_message(self.channel, text=text)
+ def edit(self, text):
+ self.client.edit_message_text(chat_id=self.channel, message_id=self.message.id, text=text)
+
def register_command(func):
if not is_command(func):