diff options
author | Jay Thomas <degradinglight@gmail.com> | 2013-04-27 22:35:20 -0400 |
---|---|---|
committer | Jay Thomas <degradinglight@gmail.com> | 2013-04-27 22:35:20 -0400 |
commit | 25e6485b736b2b14509738169eedee431dc86be4 (patch) | |
tree | 0cb035080cc4d72eb071375690977d4aaac29a7b /data/rbot/plugins | |
parent | cbdb5bd2eae2d30805e7228bce8d9ad70f7e4a9e (diff) |
note: added date to timestamps
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r-- | data/rbot/plugins/note.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/note.rb b/data/rbot/plugins/note.rb index 25d122a1..8dfae361 100644 --- a/data/rbot/plugins/note.rb +++ b/data/rbot/plugins/note.rb @@ -44,7 +44,7 @@ class NotePlugin < Plugin pub = [] priv = [] @registry[nick].each do |n| - s = "[#{n.time.strftime('%H:%M')}] <#{n.from}> #{n.text}" + s = "[#{n.time.strftime('%b-%e %H:%M')}] <#{n.from}> #{n.text}" unless n.private or @bot.config['note.private_message'] pub << s else |