Hello Thomas, 2012/4/18 Thomas Petazzoni <[email protected]>: > + f = open(www.settings.GIS_DATABASE_LAG_FILE) > + except IOError: > return None > - cursor = db.cursor() > - query = "select last_update from maposmatic_admin;" > + > + s = f.readline().strip()
We should call f.close(), shouldn't we? Or, once again, I haven't understood how Python works. :-) It might be better to use the "try: ... with" construct as used by Maxime: http://git.savannah.gnu.org/cgit/maposmatic/ocitysmap.git/tree/ocitysmap2/layoutlib/abstract_renderer.py#n108 Best regards, potential file d.scriptor leak hunter
