From: Robin Dunn Date: Fri, 15 Oct 2004 00:46:11 +0000 (+0000) Subject: put back the code to add the 3rd digit in the extraPath X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f189a52be400ab00b18cdad40f10701ab5c1eb19 put back the code to add the 3rd digit in the extraPath git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/config.py b/wxPython/config.py index 1a9b4796fb..b76666bcaf 100644 --- a/wxPython/config.py +++ b/wxPython/config.py @@ -137,7 +137,8 @@ FLAVOUR = "" # Optional flavour string to be appended to VERSION EP_ADD_OPTS = 0 # When doing MULTIVERSION installs the wx port and # ansi/unicode settings can optionally be added to the - # subdir path used in site-packages + # subdir path used in site-packages + WX_CONFIG = None # Usually you shouldn't need to touch this, but you can set # it to pass an alternate version of wx-config or alternate @@ -567,8 +568,8 @@ def getExtraPath(shortVer=True, addOpts=False): ep = "wx-%d.%d" % (VER_MAJOR, VER_MINOR) # plus release if minor is odd - #if VER_MINOR % 2 == 1: - # ep += ".%d" % VER_RELEASE + if VER_MINOR % 2 == 1: + ep += ".%d" % VER_RELEASE else: # long version, full version