summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-11-02 03:48:24 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-11-02 03:48:24 (GMT)
commit740e1dcdc22027899cd3e88c2bdc99af8071a805 (patch)
tree66cb7c92fff811be38421614b8150134a781cc3c /Lib/tkinter
parent048345d4174254a1d70eb4aa09109dddee858223 (diff)
parent4b2b1de0bdca9020a015473c5348e1a1d4bb53f9 (diff)
downloadcpython-740e1dcdc22027899cd3e88c2bdc99af8071a805.zip
cpython-740e1dcdc22027899cd3e88c2bdc99af8071a805.tar.gz
cpython-740e1dcdc22027899cd3e88c2bdc99af8071a805.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):