summaryrefslogtreecommitdiff
path: root/plugins/reminder.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-05-06 22:09:16 +0200
committermathieui <mathieui@mathieui.net>2012-05-06 22:09:16 +0200
commit39a61486de399ccab77ce8da683a27ce7476f9cd (patch)
tree95766a1830b99c8eaeab23e1f8e6edb1a4ad54de /plugins/reminder.py
parentb37b7ec8e6f3f133825c0335aa67f510f4cbaf09 (diff)
downloadpoezio-39a61486de399ccab77ce8da683a27ce7476f9cd.tar.gz
poezio-39a61486de399ccab77ce8da683a27ce7476f9cd.tar.bz2
poezio-39a61486de399ccab77ce8da683a27ce7476f9cd.tar.xz
poezio-39a61486de399ccab77ce8da683a27ce7476f9cd.zip
Fix the /remind help
Diffstat (limited to 'plugins/reminder.py')
-rw-r--r--plugins/reminder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/reminder.py b/plugins/reminder.py
index 49062b2c..2e3fd20d 100644
--- a/plugins/reminder.py
+++ b/plugins/reminder.py
@@ -6,7 +6,7 @@ import timed_events
class Plugin(BasePlugin):
def init(self):
- self.add_command('remind', self.command_remind, "Usage: /reminder <time in seconds> <todo>\nReminder: remind you of <todo> every <time> seconds..", self.completion_remind)
+ self.add_command('remind', self.command_remind, "Usage: /remind <time in seconds> <todo>\nReminder: remind you of <todo> every <time> seconds..", self.completion_remind)
self.add_command('done', self.command_done, "Usage: /done <id>\nDone: Stop reminding you do the task identified by <id>", self.completion_done)
self.add_command('tasks', self.command_tasks, "Usage: /tasks\nTasks: List all the current tasks and their ids.", None)
self.tasks = {}