From 3e4be68f8b596cf3467f993dc9a210a3d901ca1c Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Tue, 5 Mar 2013 22:37:27 +0100 Subject: Make the tarball generation tool handle spaces in filenames Change-Id: Ie1b5fac97eea93c9ac934ffb8bf6c0d9a0559339 --- utils/common/gitscraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/common/gitscraper.py') 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=[]): return objects for line in cmdout[0].decode().split('\n'): - regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(\S+)', + regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(.*)', line.encode()) for rf in regex: # filter -- cgit