From: Adam Sampson Date: Wed, 27 Jun 2018 13:38:58 +0000 (+0100) Subject: patman: Split alias entries on arbitrary whitespace X-Git-Tag: v2025.01-rc5-pxa1908~3861^2~3 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=b8a48fbca30523ec8d71795bffd2d54ce279f28d;p=u-boot.git patman: Split alias entries on arbitrary whitespace Previously the first three words in a git-mailrc alias entry could only be separated by spaces. git-send-email and Mutt both allow arbitrary whitespace here. Signed-off-by: Adam Sampson Reviewed-by: Simon Glass --- 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,