From 4c34055849a079ab6da5cec67f0f23b08a5db2e2 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 8 Jun 2014 22:48:07 -0400 Subject: [PATCH] Another bugfix. --- bitshift/crawler/indexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitshift/crawler/indexer.py b/bitshift/crawler/indexer.py index fc146f2..5f726c5 100644 --- a/bitshift/crawler/indexer.py +++ b/bitshift/crawler/indexer.py @@ -199,7 +199,7 @@ class GitIndexer(threading.Thread): def _walk_history(self, files, head): """Walk a repository's history for metadata.""" def update_entry(commit, entry, new_file): - entry.add(commit.author.name) + entry["authors"].add(commit.author.name) commit_ts = datetime.utcfromtimestamp(commit.committed_date) if commit_ts > entry["time_last_modified"]: entry["time_last_modified"] = commit_ts