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:
@@ -528,16 +528,11 @@ def find_DLLs():
|
|||||||
proc.close()
|
proc.close()
|
||||||
for line in lines:
|
for line in lines:
|
||||||
if line.startswith(" wxmsw"):
|
if line.startswith(" wxmsw"):
|
||||||
WXDLLVER = line[9:14]
|
WXDLLVER = line[9:14].split('_')[0]
|
||||||
if WXDLLVER.endswith('_'):
|
|
||||||
WXDLLVER = WXDLLVER[:-1]
|
|
||||||
|
|
||||||
if line.startswith(" python"):
|
if line.startswith(" python"):
|
||||||
PYTHONVER = line[10] + '.' + line[11]
|
PYTHONVER = line[10] + '.' + line[11]
|
||||||
|
|
||||||
#if WXDLLVER and PYTHONVER:
|
|
||||||
# return WXDLLVER, PYTHONVER
|
|
||||||
|
|
||||||
return WXDLLVER, PYTHONVER
|
return WXDLLVER, PYTHONVER
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user