diff options
author | Simon Glass | 2019-01-07 16:44:24 -0700 |
---|---|---|
committer | Simon Glass | 2019-01-14 17:47:13 -0700 |
commit | ccd2979a8d59636ca0cf288db03e1298dc120123 (patch) | |
tree | 5c5435662277183614236c40872b6f23335dde3e /tools/buildman | |
parent | 8405452e6abab07cf445ba307b3ca58d39a097ba (diff) |
buildman: Fix tabs in GetWrapper()
This function has tabs instead of spaces. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/toolchain.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index b3c61827f32..a65737fdf84 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -135,8 +135,8 @@ class Toolchain: def GetWrapper(self, show_warning=True): """Get toolchain wrapper from the setting file. """ - value = '' - for name, value in bsettings.GetItems('toolchain-wrapper'): + value = '' + for name, value in bsettings.GetItems('toolchain-wrapper'): if not value: print "Warning: Wrapper not found" if value: |