Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
build: make wscript work with python 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Sep 19, 2011
1 parent 243c218 commit 3aa1975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -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 ""
)


Expand Down

0 comments on commit 3aa1975

Please sign in to comment.