Changeset 200
- Timestamp:
- 08/07/08 04:09:12 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/antimatter/luke/myplugs/libtracker/timeparser.py
r199 r200 21 21 if (ievent.command == "lt-del"): 22 22 result = user_del_handler(ievent, user) 23 ievent.reply("Delete d: ", result=result, dot = ", ")23 ievent.reply("Delete: ", result=result, dot = ", ") 24 24 return 25 25 if (ievent.command == "lt-start"): 26 26 result = user_start_handler(ievent, user) 27 ievent.reply("Start ing: " + result)27 ievent.reply("Start: " + result) 28 28 return 29 29 if (ievent.command == "lt-stop"): 30 30 result = user_stop_handler(ievent, user) 31 ievent.reply("Stop ping: " + repr(result))31 ievent.reply("Stop: " + repr(result)) 32 32 return 33 33 if (ievent.command == "lt-push"): 34 34 result = user_push_handler(ievent, user) 35 ievent.reply("Push ed: " + repr(result))35 ievent.reply("Push: " + result) 36 36 return 37 37 if (ievent.command == "lt-pop"): 38 result = user_pop_handler(ievent, user) 39 ievent.reply("Pop: " + result) 38 40 return 39 41 result = add_extract(ievent)