diff options
| author | Simon Glass <[email protected]> | 2022-02-11 13:23:18 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-03-02 10:28:12 -0500 |
| commit | 32cc6ae273128510cffc536fc72f260181ef1744 (patch) | |
| tree | f83965c262417db03c0ef725582f7bdfc5f1aa3b /tools/patman/patchstream.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 <[email protected]>
Diffstat (limited to 'tools/patman/patchstream.py')
| -rw-r--r-- | tools/patman/patchstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 9b32fd4790e..fb6a6036f3b 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -597,7 +597,7 @@ class PatchStream: if 'prefix' in self.series: parts.append(self.series['prefix']) if 'postfix' in self.series: - parts.append(self.serties['postfix']) + parts.append(self.series['postfix']) if 'version' in self.series: parts.append("v%s" % self.series['version']) |
