Skip to content

Commit

Permalink
Fixed stupid mistake made that broke module
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffnb committed Sep 12, 2012
1 parent 4690bd5 commit 46b9dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/seen.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def note(self, origin, match, args):
self.bot.seen = {}
if origin.sender.startswith('#'):
# if origin.sender == '#inamidst': return
self.seen[origin.nick.lower()] = (origin.sender, time.localtime())
self.seen[origin.nick.lower()] = (origin.sender, time.time())

# if not hasattr(self, 'chanspeak'):
# self.chanspeak = {}
Expand Down

0 comments on commit 46b9dfe

Please sign in to comment.