From 1ff44651a9e8d06b74588c2f2b4763675b6885b7 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 2 Dec 2003 18:50:46 +0000 Subject: [PATCH] Intify the stupid help. --- plugins/Lookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Lookup.py b/plugins/Lookup.py index 9d8ac7dfa..586080742 100644 --- a/plugins/Lookup.py +++ b/plugins/Lookup.py @@ -159,7 +159,7 @@ class Lookup(callbacks.Privmsg): db = getDb() cursor = db.cursor() cursor.execute("""SELECT COUNT(*) FROM %s""" % name) - rows = cursor.fetchone()[0] + rows = int(cursor.fetchone()[0]) docstring = """[] If is given, looks up in the %s database. Otherwise,