really fix wscript revision info handling

This commit is contained in:
Paul Davis 2014-08-15 21:54:52 -04:00
parent 52200569c3
commit c42a14fba8

View file

@ -35,8 +35,8 @@ else:
parts = rev.split ('.')
MAJOR = parts[0]
MINOR = parts[1]
other = parts[1].split ('-')
MINOR = other[0]
if len(other) > 1:
MICRO = other[0]
else: