diff options
Diffstat (limited to 'utils/common/gitscraper.py')
-rwxr-xr-x | utils/common/gitscraper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/common/gitscraper.py b/utils/common/gitscraper.py index 774867f7ba..9660acb83a 100755 --- a/utils/common/gitscraper.py +++ b/utils/common/gitscraper.py | |||
@@ -80,7 +80,7 @@ def get_lstree(repo, start, filterlist=[]): | |||
80 | return objects | 80 | return objects |
81 | 81 | ||
82 | for line in cmdout[0].decode().split('\n'): | 82 | for line in cmdout[0].decode().split('\n'): |
83 | regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(\S+)', | 83 | regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(.*)', |
84 | line.encode()) | 84 | line.encode()) |
85 | for rf in regex: | 85 | for rf in regex: |
86 | # filter | 86 | # filter |