diff options
Diffstat (limited to 'bug/bug.go')
-rw-r--r-- | bug/bug.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ func NewBug() *Bug { // Find an existing Bug matching a prefix func FindLocalBug(repo repository.Repo, prefix string) (*Bug, error) { - ids, err := repo.ListRefs(bugsRefPattern) + ids, err := repo.ListIds(bugsRefPattern) if err != nil { return nil, err |