diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-11 13:23:18 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-02 10:28:12 -0500 |
commit | 32cc6ae273128510cffc536fc72f260181ef1744 (patch) | |
tree | f83965c262417db03c0ef725582f7bdfc5f1aa3b /tools/patman/settings.py | |
parent | f9a719e2954473f9be1f8c14a28288f943a00dd2 (diff) |
patman: Correct pylint errors
Fix pylint errors that can be fixed and mask those that seem to be
incorrect.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/settings.py')
-rw-r--r-- | tools/patman/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/settings.py b/tools/patman/settings.py index 014bb376d8..7c2b5c196c 100644 --- a/tools/patman/settings.py +++ b/tools/patman/settings.py @@ -200,12 +200,12 @@ def CreatePatmanConfigFile(gitutil, config_fname): """ name = gitutil.get_default_user_name() if name == None: - name = raw_input("Enter name: ") + name = input("Enter name: ") email = gitutil.get_default_user_email() if email == None: - email = raw_input("Enter email: ") + email = input("Enter email: ") try: f = open(config_fname, 'w') |