Changeset 187
- Timestamp:
- 07/17/08 18:42:47 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/antimatter/luke/myplugs/libtracker/timeparser.py
r181 r187 17 17 # Pretty print this 18 18 result = user_entries(user) 19 ievent.reply(result) 19 for i in range(0,len(result)): 20 row = result[i] 21 result[i] = "Record #%d: %s on %d for %d" % (row[0], row[2], row[3], row[4]) 22 ievent.reply("Entries: ", result=result, dot=" ---- ") 20 23 return 21 24