summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorGaël PORTAY <gael.portay@savoirfairelinux.com>2016-11-05 00:10:00 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-11-05 11:49:05 +0100
commitc29f023fc60392384f69b7530d729723913b778d (patch)
treee3a656f6ac7d566a36a4184f78f7fb8ef37b46f9 /support
parent07c1ae90c8890e82e62c22beaa4a72f6e081e96c (diff)
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 <gael.portay@savoirfairelinux.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/scripts/get-developers2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/get-developers b/support/scripts/get-developers
index 83f1e5b9b..40ed08ffe 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: