Nunca llegas a hacer el commit, por que siempre retornas antes de llegar al commit
Correccion:
Código Python:
Ver originaldef executeone(self, consulta):
self.cursor=self.conn.cursor()
try:
self.cursor.execute(consulta)
registro=self.cursor.fetchone ()
self.conn.commit()
self.cursor.close
return registro
except MySQLdb.Error, e:
return False