aboutsummaryrefslogtreecommitdiffstats
path: root/skate
diff options
context:
space:
mode:
Diffstat (limited to 'skate')
-rw-r--r--skate/zippy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/zippy.go b/skate/zippy.go
index c318973..2283733 100644
--- a/skate/zippy.go
+++ b/skate/zippy.go
@@ -413,7 +413,7 @@ func uniqueMatches(docs []string, stats *statsAugment) (result []*BiblioRef, err
})
// We consider a match unique, if source and target match.
hash := func(bref *BiblioRef) string {
- return bref.SourceReleaseIdent + bref.TargetReleaseIdent
+ return bref.SourceReleaseIdent + "-" + bref.TargetReleaseIdent
}
seen := set.New()
for _, doc := range brefs {