Fix mysql cleanup log message

pull/49/head
Carlos Pérez-Aradros Herce 2014-07-09 13:28:42 +02:00 committed by Julio García
parent 2b3bc10f78
commit f76a6cfc96
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ On RHEL, install it using 'yum install MySQL-python'"""
c=conn.cursor()
tablename="sogo_cache_folder_%s" % (username)
c.execute("TRUNCATE TABLE %s" % tablename)
print "Table %s emptied"
print "Table %s emptied" % tablename
def postgresqlCleanup(dbhost, dbport, dbuser, dbpass, dbname, username):