Fixed a missing "\n".

git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@199 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df
This commit is contained in:
ph4ntome@gmail.com 2014-10-31 23:26:37 +00:00
parent e1ed041a19
commit 5370e100f7

View File

@ -8,7 +8,7 @@ for x in ['lang', 'style', 'layouts', 'geom']:
out = open('resources.py', 'w')
out.write('resource_list = {}')
out.write('resource_list = {}\n')
for x in res.keys():
out.write('resource_list["%s"] = %s\n' % (x, str(res[x])))