Skip to content

Commit

Permalink
Fix vesrion variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Jurman committed Mar 9, 2012
1 parent 4231275 commit d6f0b3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def run(self):
js.write(data)

# Update version.py
vs_file = "version_num = '{ver_num}'".format(ver_num=ver_num)
vs_file = "_version_num_ = '{ver_num}'".format(ver_num=ver_num)

with open('tw2/util/html5shim/version.py', 'w') as vs_py:
print "Writing new version.py"
Expand Down
2 changes: 1 addition & 1 deletion tw2/util/html5shim/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version_num = 'pre3.5'
_version_num_ = 'pre3.5'

0 comments on commit d6f0b3e

Please sign in to comment.