Browse Source

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>
Gaël PORTAY 8 năm trước cách đây
mục cha
commit
c29f023fc6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      support/scripts/get-developers

+ 1 - 1
support/scripts/get-developers

@@ -42,7 +42,7 @@ def __main__():
     if args.check:
     if args.check:
         files = getdeveloperlib.check_developers(devs)
         files = getdeveloperlib.check_developers(devs)
         for f in files:
         for f in files:
-            print f
+            print(f)
 
 
     # Handle the architecture action
     # Handle the architecture action
     if args.architecture is not None:
     if args.architecture is not None: