From 209f3e1453dd576919bf1cc8f696218dae23c34b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 19 Apr 2005 01:10:20 +0000 Subject: [PATCH] corrected version number extraction git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/distrib/make_installer.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/wxPython/distrib/make_installer.py b/wxPython/distrib/make_installer.py index 96672b8ddf..2454fb8459 100644 --- a/wxPython/distrib/make_installer.py +++ b/wxPython/distrib/make_installer.py @@ -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 -- 2.50.0