From 0f4ec13e11bb8abe21aba2a28547dfb9372bc377 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 21 May 2016 12:26:45 +0100 Subject: meta/scripts: python3: rename file -> open file() API doesn't exist in python 3, convert to open(). Also handle some cases where files aren't closed. Compatible with python 2.7. [Contributions from Ed and Richard] Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/swabber-strace-attach | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/swabber-strace-attach') diff --git a/scripts/swabber-strace-attach b/scripts/swabber-strace-attach index bb0391a7ca..f258987d5e 100755 --- a/scripts/swabber-strace-attach +++ b/scripts/swabber-strace-attach @@ -16,8 +16,8 @@ else: sys.exit() -si = file(os.devnull, 'r') -so = file(sys.argv[2], 'w') +si = open(os.devnull, 'r') +so = open(sys.argv[2], 'w') se = so # Replace those fds with our own -- cgit 1.2.3-korg