From: Gaël PORTAY Date: Sat, 5 Nov 2016 04:10:00 +0000 (-0400) Subject: get-developers: fix parentheses for print X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c29f023fc60392384f69b7530d729723913b778d;p=buildroot.git get-developers: fix parentheses for print Python3 complains about missing parentheses. $ ./support/scripts/get-developers File "./support/scripts/get-developers", line 45 print f ^ SyntaxError: Missing parentheses in call to 'print' Signed-off-by: Gaël PORTAY Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/get-developers b/support/scripts/get-developers index 83f1e5b9b2..40ed08ffe1 100755 --- a/support/scripts/get-developers +++ b/support/scripts/get-developers @@ -42,7 +42,7 @@ def __main__(): if args.check: files = getdeveloperlib.check_developers(devs) for f in files: - print f + print(f) # Handle the architecture action if args.architecture is not None: