summaryrefslogtreecommitdiff
path: root/plugins/reminder.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-15 21:42:10 +0100
committermathieui <mathieui@mathieui.net>2011-11-15 21:42:10 +0100
commit241369c3309f43cc710fd66dc8b0348c66f92293 (patch)
tree82e715702d83263ddbadde7b268173430d54bdfd /plugins/reminder.py
parent9a32229d0bcadf5fcccb493f18efb0e240b1fa6c (diff)
downloadpoezio-241369c3309f43cc710fd66dc8b0348c66f92293.tar.gz
poezio-241369c3309f43cc710fd66dc8b0348c66f92293.tar.bz2
poezio-241369c3309f43cc710fd66dc8b0348c66f92293.tar.xz
poezio-241369c3309f43cc710fd66dc8b0348c66f92293.zip
Use the new functions in reminder.py
Diffstat (limited to 'plugins/reminder.py')
-rw-r--r--plugins/reminder.py29
1 files changed, 6 insertions, 23 deletions
diff --git a/plugins/reminder.py b/plugins/reminder.py
index ed45985c..49062b2c 100644
--- a/plugins/reminder.py
+++ b/plugins/reminder.py
@@ -29,33 +29,15 @@ class Plugin(BasePlugin):
args = common.shell_split(arg)
if len(args) < 2:
return
- if args[0].endswith('d'):
- modifier = 'd'
- elif args[0].endswith('h'):
- modifier = 'h'
- elif args[0].endswith('m'):
- modifier = 'm'
- else:
- modifier = None
- try:
- if modifier:
- time = int(args[0][:-1])
- else:
- time = int(args[0])
- except:
+ time = common.parse_str_to_secs(args[0])
+ if not time:
return
- if modifier == 'd':
- time = time * 86400
- elif modifier == 'h':
- time = time * 3600
- elif modifier == 'm':
- time = time * 60
-
self.tasks[self.count] = (time, args[1])
timed_event = timed_events.DelayedEvent(time, self.remind, self.count)
self.core.add_timed_event(timed_event)
- self.core.information('Task %s added: %s every %s seconds.' % (self.count, args[1], time), 'Info')
+ self.core.information('Task %s added: %s every %s.' % (self.count, args[1],
+ common.parse_secs_to_str(time)), 'Info')
self.count += 1
def completion_remind(self, the_input):
@@ -87,7 +69,8 @@ class Plugin(BasePlugin):
else:
s = 'The following tasks are active:\n'
for key in self.tasks:
- s += 'Task %s: %s every %s seconds.\n' % (key, repr(self.tasks[key][1]), self.tasks[key][0])
+ s += 'Task %s: %s every %s.\n' % (key, repr(self.tasks[key][1]),
+ common.parse_secs_to_str(self.tasks[key][0]))
if s:
self.core.information(s, 'Info')