[Buildroot] [PATCH 1/1] utils/get-developers: fix syntax error

Grégoire Delattre greg at quimbo.fr
Thu Oct 11 23:00:50 UTC 2018


From: Grégoire Delattre <gregoire.delattre at gmail.com>

This fixes a syntax error introduced in bcf2ed5cc3.

Output before the patch:
    $ ./utils/get-developers outgoing/*
        File "./utils/get-developers", line 97
            print dev
                    ^
        SyntaxError: Missing parentheses in call to 'print'. Did you mean
        print(dev)?

Output after the patch:
    $ ./utils/get-developers outgoing/*
    git send-email --to buildroot at buildroot.org

Signed-off-by: Grégoire Delattre <gregoire.delattre at gmail.com>
---
 utils/get-developers | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/get-developers b/utils/get-developers
index 9135b41662..ce882e6699 100755
--- a/utils/get-developers
+++ b/utils/get-developers
@@ -94,7 +94,7 @@ def __main__():
 
         if args.email:
             for dev in matching_devs:
-                print dev
+                print(dev)
         else:
             result = "--to buildroot at buildroot.org"
             for dev in matching_devs:
-- 
2.19.1



More information about the buildroot mailing list