]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - tools/patman/get_maintainer.py
patman: Unquote output from get_maintainer.pl
[people/ms/u-boot.git] / tools / patman / get_maintainer.py
index 2deb5db6ecff7bcfc9c4ba3da5905eb6d7e36476..22b091808a1914f541d4162b4b8da91c7b4614a3 100644 (file)
@@ -44,4 +44,5 @@ def GetMaintainer(fname, verbose=False):
         return []
 
     stdout = command.Output(get_maintainer, '--norolestats', fname)
-    return stdout.splitlines()
+    lines = stdout.splitlines()
+    return [ x.replace('"', '') for x in lines ]