diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-30 18:39:28 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-30 18:39:28 (GMT) |
commit | e7bf59f500481715e76ff646f6728e28361faff2 (patch) | |
tree | 3f3dcd530272bb5be36089c3f2f3345ee373012f /Mac/Extras.install.py | |
parent | 716c3ac40cae880193dfdbda39a0ca7ed7cd2854 (diff) | |
download | cpython-e7bf59f500481715e76ff646f6728e28361faff2.zip cpython-e7bf59f500481715e76ff646f6728e28361faff2.tar.gz cpython-e7bf59f500481715e76ff646f6728e28361faff2.tar.bz2 |
Run 2to3's print fixer over some places that had been missed.
Diffstat (limited to 'Mac/Extras.install.py')
-rw-r--r-- | Mac/Extras.install.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Extras.install.py b/Mac/Extras.install.py index ce00af3..ab1af71 100644 --- a/Mac/Extras.install.py +++ b/Mac/Extras.install.py @@ -25,23 +25,23 @@ def copycleandir(src, dst): assert cursrc.startswith(src) curdst = dst + cursrc[len(src):] if verbose: - print "mkdir", curdst + print("mkdir", curdst) if not debug: if not os.path.exists(curdst): os.makedirs(curdst) for fn in files: if isclean(fn): if verbose: - print "copy", os.path.join(cursrc, fn), os.path.join(curdst, fn) + print("copy", os.path.join(cursrc, fn), os.path.join(curdst, fn)) if not debug: shutil.copy2(os.path.join(cursrc, fn), os.path.join(curdst, fn)) else: if verbose: - print "skipfile", os.path.join(cursrc, fn) + print("skipfile", os.path.join(cursrc, fn)) for i in range(len(dirs)-1, -1, -1): if not isclean(dirs[i]): if verbose: - print "skipdir", os.path.join(cursrc, dirs[i]) + print("skipdir", os.path.join(cursrc, dirs[i])) del dirs[i] def main(): |