From 880e6eb409ecf599943ed40bb87a3fe4641b0f9e Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 1 Aug 1996 15:30:33 +0000 Subject: [PATCH] Removed debug output --- Mac/Lib/macostools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Mac/Lib/macostools.py b/Mac/Lib/macostools.py index 1dcc47eaa22..da1e3ab08ba 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)