Skip to content

Commit

Permalink
Fix fmt.ErrorF usage
Browse files Browse the repository at this point in the history
  • Loading branch information
folex committed Apr 30, 2018
1 parent b1dfa4a commit 0f737fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote/bitbucket/internal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func (c *Client) GetPermission(fullName string) (*RepoPerm, error) {
}

if len(out.Values) == 0 {
return nil, fmt.Errorf("no permissions in repository ", fullName)
return nil, fmt.Errorf("no permissions in repository %s", fullName)
} else {
return out.Values[0], nil
}
Expand Down

0 comments on commit 0f737fd

Please sign in to comment.