Skip to content

Commit 55f6935

Browse files
Boros Gáborasakatida
Boros Gábor
authored andcommitted
Fix setup.py (#117)
1 parent efd62ee commit 55f6935

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@
4545
VERSION += "." + MATCH.group("post")
4646

4747
with open("rethinkdb/version.py", "w") as f:
48-
f.writelines([
49-
"# Autogenerated version",
50-
"VERSION = {0}".format(VERSION)
51-
])
48+
f.write('VERSION = {0}'.format(repr(VERSION)))
5249
else:
5350
raise RuntimeError("{!r} does not match version format {!r}".format(
5451
RETHINKDB_VERSION_DESCRIBE, VERSION_RE))

0 commit comments

Comments
 (0)