diff options
author | Simon Glass | 2019-05-14 15:53:36 -0600 |
---|---|---|
committer | Simon Glass | 2019-07-10 16:52:45 -0600 |
commit | 5a1af1dafeab06f0ef3bb749ec0ce59784bf8925 (patch) | |
tree | 655ceadc0a6be998a630cc41c00b9d1c79753457 /tools/patman/gitutil.py | |
parent | b1793a531e5934ea5453b7e24495e2fcddd9c493 (diff) |
patman: Convert print statements to Python 3
Update all print statements to be functions, as required by Python 3.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/gitutil.py')
-rw-r--r-- | tools/patman/gitutil.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/patman/gitutil.py b/tools/patman/gitutil.py index 7650b51bd5b..11aeb73b74c 100644 --- a/tools/patman/gitutil.py +++ b/tools/patman/gitutil.py @@ -397,11 +397,11 @@ def EmailPatches(series, cover_fname, args, dry_run, raise_on_error, cc_fname, git_config_to = command.Output('git', 'config', 'sendemail.to', raise_on_error=False) if not git_config_to: - print ("No recipient.\n" - "Please add something like this to a commit\n" - "Series-to: Fred Bloggs <f.blogs@napier.co.nz>\n" - "Or do something like this\n" - "git config sendemail.to u-boot@lists.denx.de") + print("No recipient.\n" + "Please add something like this to a commit\n" + "Series-to: Fred Bloggs <f.blogs@napier.co.nz>\n" + "Or do something like this\n" + "git config sendemail.to u-boot@lists.denx.de") return cc = BuildEmailList(list(set(series.get('cc')) - set(series.get('to'))), '--cc', alias, raise_on_error) |