trim the whitespace from the daily build version text

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-06-16 05:20:03 +00:00
parent 8396fb3fdc
commit 4b2826e515

View File

@ -721,7 +721,8 @@ if UNICODE:
VER_FLAGS += 'u'
if os.path.exists('DAILY_BUILD'):
VER_FLAGS += '.' + open('DAILY_BUILD').read()
VER_FLAGS += '.' + open('DAILY_BUILD').read().strip()
VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE,
VER_SUBREL, VER_FLAGS)