Add missing semicolon from exampleparser output

This commit is contained in:
Tom Payne
2013-01-03 11:52:26 +01:00
parent 7f63e3b8e7
commit ad983a5e68

View File

@@ -255,7 +255,7 @@ You don't have them. \n(%s)""" % E
json = json.dumps({"examples": exampleList, "index": index})
# Give the json a global variable we can use in our js.
# This should be replaced or made optional.
json = 'var info=' + json
json = 'var info=' + json + ';'
outFile.write(json)
outFile.close()