summaryrefslogtreecommitdiff
path: root/patchset.Make.go
diff options
context:
space:
mode:
Diffstat (limited to 'patchset.Make.go')
-rw-r--r--patchset.Make.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/patchset.Make.go b/patchset.Make.go
index c8bfdc0..39eb827 100644
--- a/patchset.Make.go
+++ b/patchset.Make.go
@@ -288,6 +288,7 @@ func findPatchId(repo *gitpb.Repo, p *Patch) error {
return fmt.Errorf("patchid did not match %s != %v", p.CommitHash, fields)
}
- p.PatchId = fields[1]
+ // log.Infof("hash=%s patchid(%v) %s\n", p.CommitHash, fields, p.Filename)
+ p.PatchId = fields[0]
return nil
}