summaryrefslogtreecommitdiff
path: root/Mac/scripts/zappycfiles.py
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-08-30 18:39:28 +0000
committerCollin Winter <collinw@gmail.com>2007-08-30 18:39:28 +0000
commite7bf59f500481715e76ff646f6728e28361faff2 (patch)
tree3f3dcd530272bb5be36089c3f2f3345ee373012f /Mac/scripts/zappycfiles.py
parent716c3ac40cae880193dfdbda39a0ca7ed7cd2854 (diff)
downloadcpython-git-e7bf59f500481715e76ff646f6728e28361faff2.tar.gz
Run 2to3's print fixer over some places that had been missed.
Diffstat (limited to 'Mac/scripts/zappycfiles.py')
-rw-r--r--Mac/scripts/zappycfiles.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/zappycfiles.py b/Mac/scripts/zappycfiles.py
index a8193c1206..77258da12a 100644
--- a/Mac/scripts/zappycfiles.py
+++ b/Mac/scripts/zappycfiles.py
@@ -16,7 +16,7 @@ def main():
sys.exit(0)
zappyc(dir)
else:
- print 'Usage: zappyc dir ...'
+ print('Usage: zappyc dir ...')
sys.exit(1)
for dir in sys.argv[1:]:
zappyc(dir)
@@ -28,7 +28,7 @@ def walker(dummy, top, names):
for name in names:
if name[-4:] in ('.pyc', '.pyo'):
path = os.path.join(top, name)
- print 'Zapping', path
+ print('Zapping', path)
if doit:
os.unlink(path)