QuoteGrabs: Fix incorrect argument order to _grab

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2009-06-26 16:58:46 -04:00
parent b9d6277e30
commit 874508867f
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
###
# Copyright (c) 2004, Daniel DiPaolo
# Copyright (c) 2008, James Vega
# Copyright (c) 2008-2009, James Vega
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -202,7 +202,7 @@ class QuoteGrabs(callbacks.Plugin):
try:
last = int(self.db.select(channel, msg.nick))
except dbi.NoRecordError:
self._grab(irc, channel, msg, irc.prefix)
self._grab(channel, irc, msg, irc.prefix)
self._sendGrabMsg(irc, msg)
else:
elapsed = int(time.time()) - last