From 6afaeb757af0dbd8508a0f2352ade61e41bec84c Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Fri, 3 Aug 2007 17:06:41 +0000 Subject: Convert print statements to function calls in Tools/. --- Tools/scripts/which.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/scripts/which.py') diff --git a/Tools/scripts/which.py b/Tools/scripts/which.py index 368eea2503..a9f4907812 100755 --- a/Tools/scripts/which.py +++ b/Tools/scripts/which.py @@ -37,7 +37,7 @@ def main(): mode = S_IMODE(st[ST_MODE]) if mode & 0o111: if not ident: - print filename + print(filename) ident = st[:3] else: if st[:3] == ident: -- cgit v1.2.1