From 5bb3087c2f1a2dd7df9ed51476448dfe05ae0adc Mon Sep 17 00:00:00 2001 From: Jens Staal Date: Thu, 19 Nov 2015 06:03:28 +0100 Subject: [PATCH] Proposed change by "2to3" script Right now, headers_install.py fails if python3 is default. The 2to3 script proposes the following change. --- arch/lkl/scripts/headers_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/lkl/scripts/headers_install.py b/arch/lkl/scripts/headers_install.py index cada8e9c66ba8b..9e49d887548f87 100755 --- a/arch/lkl/scripts/headers_install.py +++ b/arch/lkl/scripts/headers_install.py @@ -102,7 +102,7 @@ def process_header(h): os.makedirs(out_dir) except: pass - print " INSTALL\t%s" % (out_dir + "/" + os.path.basename(h)) + print(" INSTALL\t%s" % (out_dir + "/" + os.path.basename(h))) os.system("scripts/headers_install.sh %s %s %s" % (out_dir, dir, os.path.basename(h))) replace(out_dir + "/" + os.path.basename(h))