diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-03 17:06:41 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-03 17:06:41 +0000 |
commit | 6afaeb757af0dbd8508a0f2352ade61e41bec84c (patch) | |
tree | f1b31bc7138b17ff39791bbb45aa81583c3b6e46 /Tools/scripts/byteyears.py | |
parent | e5d0e8431f929cad2da77b63fe1b7dc0ff21a428 (diff) | |
download | cpython-git-6afaeb757af0dbd8508a0f2352ade61e41bec84c.tar.gz |
Convert print statements to function calls in Tools/.
Diffstat (limited to 'Tools/scripts/byteyears.py')
-rwxr-xr-x | Tools/scripts/byteyears.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/byteyears.py b/Tools/scripts/byteyears.py index b4d43356b9..f486d26795 100755 --- a/Tools/scripts/byteyears.py +++ b/Tools/scripts/byteyears.py @@ -52,8 +52,8 @@ def main(): size = st[ST_SIZE] age = now - anytime byteyears = float(size) * float(age) / secs_per_year - print filename.ljust(maxlen), - print repr(int(byteyears)).rjust(8) + print(filename.ljust(maxlen), end=' ') + print(repr(int(byteyears)).rjust(8)) sys.exit(status) |