mirror of
https://xff.cz/git/u-boot/
synced 2025-09-02 09:12:08 +02:00
patman: Unquote output from get_maintainer.pl
get_maintainer.pl quotes names which it considers unsafe, i.e. anything containing [^a-zA-Z0-9_ \-]. This confuses patman, it will duplicate addresses which are also in Series-to/cc. Strip the quotes. Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Simon Glass
parent
286ede6515
commit
d1ccaa4760
@@ -44,4 +44,5 @@ def GetMaintainer(fname, verbose=False):
|
|||||||
return []
|
return []
|
||||||
|
|
||||||
stdout = command.Output(get_maintainer, '--norolestats', fname)
|
stdout = command.Output(get_maintainer, '--norolestats', fname)
|
||||||
return stdout.splitlines()
|
lines = stdout.splitlines()
|
||||||
|
return [ x.replace('"', '') for x in lines ]
|
||||||
|
Reference in New Issue
Block a user