corrected version number extraction

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-04-19 01:10:20 +00:00
parent bb531fa187
commit 209f3e1453

View File

@@ -528,16 +528,11 @@ def find_DLLs():
proc.close()
for line in lines:
if line.startswith(" wxmsw"):
WXDLLVER = line[9:14]
if WXDLLVER.endswith('_'):
WXDLLVER = WXDLLVER[:-1]
WXDLLVER = line[9:14].split('_')[0]
if line.startswith(" python"):
PYTHONVER = line[10] + '.' + line[11]
#if WXDLLVER and PYTHONVER:
# return WXDLLVER, PYTHONVER
return WXDLLVER, PYTHONVER