summaryrefslogtreecommitdiff
path: root/utils/common
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common')
-rwxr-xr-xutils/common/gitscraper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/common/gitscraper.py b/utils/common/gitscraper.py
index 9660acb83a..86d6a980cd 100755
--- a/utils/common/gitscraper.py
+++ b/utils/common/gitscraper.py
@@ -95,7 +95,7 @@ def get_lstree(repo, start, filterlist=[]):
95 if rf[3] in objects: 95 if rf[3] in objects:
96 print("FATAL: key already exists in dict!") 96 print("FATAL: key already exists in dict!")
97 return {} 97 return {}
98 objects[rf[3]] = rf[2] 98 objects[rf[3].decode()] = rf[2].decode()
99 return objects 99 return objects
100 100
101 101
@@ -172,7 +172,7 @@ def scrape_files(repo, treehash, filelist, dest="", timestamp_files=[]):
172 treeobjects = get_lstree(repo, treehash, filelist) 172 treeobjects = get_lstree(repo, treehash, filelist)
173 timestamps = {} 173 timestamps = {}
174 for obj in treeobjects: 174 for obj in treeobjects:
175 get_object(repo, treeobjects[obj], os.path.join(dest.encode(), obj)) 175 get_object(repo, treeobjects[obj], os.path.join(dest, obj))
176 for f in timestamp_files: 176 for f in timestamp_files:
177 if obj.find(f) == 0: 177 if obj.find(f) == 0:
178 timestamps[obj] = get_file_timestamp(repo, treehash, obj) 178 timestamps[obj] = get_file_timestamp(repo, treehash, obj)