diff --git a/check_whence.py b/check_whence.py index 711be362..e00fdd19 100755 --- a/check_whence.py +++ b/check_whence.py @@ -33,7 +33,7 @@ def list_whence_files(): for line in whence: match = re.match(r'File:\s*(.*)', line) if match: - yield match.group(1).replace("\ ", " ") + yield match.group(1).replace("\ ", " ").replace("\"", "") continue def list_git():