diff options
author | Tom Rini <trini@konsulko.com> | 2018-07-26 23:12:47 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-26 23:12:47 -0400 |
commit | 2ae23a280be660c5c3dc8addb7f61bf7c12242f7 (patch) | |
tree | 46adac0e233201045e737d46ec00d8d4f39d69c1 /tools | |
parent | 53885e76ce8dca29782b211c2c83ad37c41d798a (diff) | |
parent | ab948cd21d25ba2f54832fc98a59eea90e680eba (diff) |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'tools')
-rw-r--r-- | tools/patman/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/settings.py b/tools/patman/settings.py index 94ea5b5a1b..ca4334426b 100644 --- a/tools/patman/settings.py +++ b/tools/patman/settings.py @@ -263,7 +263,7 @@ def _ReadAliasFile(fname): line = line.strip() if not line or line.startswith('#'): continue - words = line.split(' ', 2) + words = line.split(None, 2) if len(words) < 3 or words[0] != 'alias': if not bad_line: bad_line = "%s:%d:Invalid line '%s'" % (fname, linenum, |