Added change names to do required changes in names such that we get the chapter names beyond 10 in proper list
#!/usr/bin/env python## This script updates the contents of the comments_element table.# It's fugly, but a lot less painful than trying to use Django's# fixtures system.import os, syssys.path.append(os.path.dirname(__file__))import dbutilos.system('make -C ../../en all-ids.dat')conn = dbutil.connect()c = conn.cursor()c.execute('''load data local infile "../../en/all-ids.dat" replace into table comments_element fields terminated by "|"''')print 'Database updated'