summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/macostools.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-08-01 15:30:33 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-08-01 15:30:33 (GMT)
commit880e6eb409ecf599943ed40bb87a3fe4641b0f9e (patch)
treeea3f094f01d5fc0d667861ab3298e7ab0314adb2 /Mac/Lib/macostools.py
parenta6d78c44a7822f194d23de9c2f9b72618a827f4c (diff)
downloadcpython-880e6eb409ecf599943ed40bb87a3fe4641b0f9e.zip
cpython-880e6eb409ecf599943ed40bb87a3fe4641b0f9e.tar.gz
cpython-880e6eb409ecf599943ed40bb87a3fe4641b0f9e.tar.bz2
Removed debug output
Diffstat (limited to 'Mac/Lib/macostools.py')
-rw-r--r--Mac/Lib/macostools.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Mac/Lib/macostools.py b/Mac/Lib/macostools.py
index 1dcc47e..da1e3ab 100644
--- a/Mac/Lib/macostools.py
+++ b/Mac/Lib/macostools.py
@@ -47,8 +47,6 @@ def mkdirs(dst):
if dst == '' or os.path.exists(dst):
return
head, tail = os.path.split(dst)
- print 'XX', dst, '->', (head, tail)
- # XXXX Is this a bug in os.path.split?
if not ':' in head:
head = head + ':'
mkdirs(head)