0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

build: make wscript work with python 2.4

This commit is contained in:
Ben Noordhuis 2011-09-19 16:43:53 +02:00
parent 243c218c7a
commit 3aa1975c58

View File

@ -241,7 +241,7 @@ def get_node_version():
return "%s.%s.%s%s" % ( node_major_version,
node_minor_version,
node_patch_version,
"-pre" if node_is_release == "0" else ""
node_is_release == "0" and "-pre" or ""
)