diff options
author | 2018-10-12 01:00:50 +0200 | |
---|---|---|
committer | 2018-10-12 09:05:50 +0200 | |
commit | 8320ad3341b9242eaf82df7a4d4c1a367991ec3d (patch) | |
tree | ba5ffcdd8093900839ca19646c72480b9908e602 /utils/get-developers | |
parent | c27484b2efe0b1df57549f48f39e4d08e26c8200 (diff) | |
download | buildroot-8320ad3341b9242eaf82df7a4d4c1a367991ec3d.tar.gz buildroot-8320ad3341b9242eaf82df7a4d4c1a367991ec3d.tar.bz2 |
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>
Diffstat (limited to 'utils/get-developers')
-rwxr-xr-x | utils/get-developers | 2 |
1 files changed, 1 insertions, 1 deletions
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@buildroot.org" for dev in matching_devs: |