summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-11-02 03:39:21 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-11-02 03:39:21 (GMT)
commit4b2b1de0bdca9020a015473c5348e1a1d4bb53f9 (patch)
tree973bb0c572ba91436bf387b71f9f025d01284bf4 /Lib/tkinter
parent91f01e175a4f8f21893401573bdc36c5004388dd (diff)
downloadcpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.zip
cpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.tar.gz
cpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.tar.bz2
Issue #17896: Move Windows external lib sources from .. to externals.
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/_fix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/_fix.py b/Lib/tkinter/_fix.py
index 5f32d25..fa88734 100644
--- a/Lib/tkinter/_fix.py
+++ b/Lib/tkinter/_fix.py
@@ -48,8 +48,8 @@ else:
prefix = os.path.join(sys.base_prefix,"tcl")
if not os.path.exists(prefix):
- # devdir/../tcltk/lib
- prefix = os.path.join(sys.base_prefix, os.path.pardir, "tcltk", "lib")
+ # devdir/externals/tcltk/lib
+ prefix = os.path.join(sys.base_prefix, "externals", "tcltk", "lib")
prefix = os.path.abspath(prefix)
# if this does not exist, no further search is needed
if os.path.exists(prefix):