diff options
Diffstat (limited to 'doClean.go')
| -rw-r--r-- | doClean.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -338,7 +338,7 @@ func checkPatchIds(repo *gitpb.Repo, b1 string, b2 string) error { return err } else { for _, hash := range stats.Stdout { - patchId, err := repo.FindPatchId(hash) + patchId, err := repo.FindPatchIdByHash(hash) if err != nil { baderr = err safe = false @@ -352,7 +352,7 @@ func checkPatchIds(repo *gitpb.Repo, b1 string, b2 string) error { return err } else { for _, hash := range stats.Stdout { - patchId, err := repo.FindPatchId(hash) + patchId, err := repo.FindPatchIdByHash(hash) if err != nil { baderr = err safe = false |
