Fix glade file conversion

This commit is contained in:
Joseph Coffland 2016-07-05 17:00:49 -07:00
parent cfeeebd410
commit 34f89d09e7
1 changed files with 16 additions and 14 deletions

View File

@ -9,21 +9,23 @@ print 'dir =', dir
os.chdir(dir) os.chdir(dir)
# Convert glade data # Convert glade data
in_file = dir + '/fah/FAHControl.glade' in_file = 'fah/FAHControl.glade'
out_file = dir + '/fah/FAHControl_glade.py' out_file = 'fah/FAHControl_glade.py'
input = None
output = None
try:
input = open(in_file, 'r')
output = open(out_file, 'w')
output.write('# -*- coding: utf8 -*-\n\n') if os.path.exists(in_file):
output.write('glade_data = """') input = None
output.write(input.read()) output = None
output.write('"""\n') try:
finally: input = open(in_file, 'r')
if input is not None: input.close() output = open(out_file, 'w')
if output is not None: output.close()
output.write('# -*- coding: utf8 -*-\n\n')
output.write('glade_data = """')
output.write(input.read())
output.write('"""\n')
finally:
if input is not None: input.close()
if output is not None: output.close()
# Bootstrap # Bootstrap