Forgot a :

This commit is contained in:
James Vega 2004-12-10 02:44:01 +00:00
parent fd2f52970c
commit 27a233e98f

View File

@ -30,7 +30,7 @@ def main():
total = 0
failed = 0
success = 0
for (table, plugin) in (('larts', larts), ('praises', praises))
for (table, plugin) in (('larts', larts), ('praises', praises)):
cursor.execute("""SELECT * FROM %s ORDER BY id ASC""" % table)
table = table[:-1]
if cursor.rowcount != 0: