utils/get-developers: fix python 3.x compatibility
authorGrégoire Delattre <gregoire.delattre@gmail.com>
Thu, 11 Oct 2018 23:00:50 +0000 (01:00 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 12 Oct 2018 07:05:50 +0000 (09:05 +0200)
commit8320ad3341b9242eaf82df7a4d4c1a367991ec3d
treeba5ffcdd8093900839ca19646c72480b9908e602
parentc27484b2efe0b1df57549f48f39e4d08e26c8200
utils/get-developers: fix python 3.x compatibility

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@buildroot.org

Signed-off-by: Grégoire Delattre <gregoire.delattre@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
utils/get-developers