aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2018-07-26 23:12:47 -0400
committerTom Rini <trini@konsulko.com>2018-07-26 23:12:47 -0400
commit2ae23a280be660c5c3dc8addb7f61bf7c12242f7 (patch)
tree46adac0e233201045e737d46ec00d8d4f39d69c1 /tools
parent53885e76ce8dca29782b211c2c83ad37c41d798a (diff)
parentab948cd21d25ba2f54832fc98a59eea90e680eba (diff)
downloadu-boot-2ae23a280be660c5c3dc8addb7f61bf7c12242f7.zip
u-boot-2ae23a280be660c5c3dc8addb7f61bf7c12242f7.tar.gz
u-boot-2ae23a280be660c5c3dc8addb7f61bf7c12242f7.tar.bz2
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'tools')
-rw-r--r--tools/patman/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/settings.py b/tools/patman/settings.py
index 94ea5b5..ca43344 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,