diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-12-21 16:35:33 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-12-21 16:35:33 (GMT) |
commit | 13571287f10a337a3cd270f2edc6de44309418da (patch) | |
tree | 60bb0c308a2d84d83e0d4bda3ff9fafbe7d417f7 /BuildTools | |
parent | f2c39a160a77c3d9359a10be0c7561946074c328 (diff) | |
download | swift-contrib-13571287f10a337a3cd270f2edc6de44309418da.zip swift-contrib-13571287f10a337a3cd270f2edc6de44309418da.tar.bz2 |
Fix for Windows packaging of 2.0
Change-Id: I73ff8c6e50e9549ebbc82e45bac3477565e3f9cb
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/Version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/SCons/Version.py b/BuildTools/SCons/Version.py index fe5fde1..cf0f4ad 100644 --- a/BuildTools/SCons/Version.py +++ b/BuildTools/SCons/Version.py @@ -59,5 +59,5 @@ def convertToWindowsVersion(version) : if build_match : patch += int(build_match.group(1)) - return (major, minor, patch) + return (major, minor, patch) |