diff --git a/plugins/QuoteGrabs/plugin.py b/plugins/QuoteGrabs/plugin.py index b3deefc49..04abf7a44 100644 --- a/plugins/QuoteGrabs/plugin.py +++ b/plugins/QuoteGrabs/plugin.py @@ -105,7 +105,7 @@ class SqliteQuoteGrabsDB(object): raise dbi.NoRecordError (id, by, quote, hostmask, at, grabber) = cursor.fetchone() return QuoteGrabsRecord(id, by=by, text=quote, hostmask=hostmask, - at=at, grabber=grabber) + at=int(at), grabber=grabber) def random(self, channel, nick): db = self._getDb(channel)