summaryrefslogtreecommitdiffstats
path: root/Mac/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-08-16 13:27:45 (GMT)
committerGuido van Rossum <guido@python.org>1991-08-16 13:27:45 (GMT)
commitfbe0a8e0901e145017db0d52fed156869df4d5ea (patch)
tree3943fb325967cc9fe901c1489c3395d3bb953da7 /Mac/Lib
parent0b7448020a7b6ff7eb913635b54424989796e467 (diff)
downloadcpython-fbe0a8e0901e145017db0d52fed156869df4d5ea.zip
cpython-fbe0a8e0901e145017db0d52fed156869df4d5ea.tar.gz
cpython-fbe0a8e0901e145017db0d52fed156869df4d5ea.tar.bz2
macpath.cat --> join
Diffstat (limited to 'Mac/Lib')
-rw-r--r--Mac/Lib/maccache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/maccache.py b/Mac/Lib/maccache.py
index dc6502b..47b673c 100644
--- a/Mac/Lib/maccache.py
+++ b/Mac/Lib/maccache.py
@@ -25,7 +25,7 @@ FILE = 1
LISTTYPE = type([])
def _stat(name):
- name = macpath.cat(cwd, name)
+ name = macpath.join(cwd, name)
if cache.has_key(name):
return cache[name]
if macpath.isfile(name):