get-developers: fix parentheses for print
authorGaël PORTAY <gael.portay@savoirfairelinux.com>
Sat, 5 Nov 2016 04:10:00 +0000 (00:10 -0400)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 5 Nov 2016 10:49:05 +0000 (11:49 +0100)
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>
support/scripts/get-developers

index 83f1e5b9b260d163579862c51a7e14174b5ac04a..40ed08ffe1e7db5d88af839402772c555634f90c 100755 (executable)
@@ -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: