mirror of https://github.com/restic/restic.git
Merge pull request #484 from mholt/patch-1
Change ErrNoKeyFound message
This commit is contained in:
commit
49eb55c457
|
@ -16,7 +16,7 @@ import (
|
|||
|
||||
var (
|
||||
// ErrNoKeyFound is returned when no key for the repository could be decrypted.
|
||||
ErrNoKeyFound = errors.New("no key could be found")
|
||||
ErrNoKeyFound = errors.New("wrong password or no key found")
|
||||
)
|
||||
|
||||
// TODO: figure out scrypt values on the fly depending on the current
|
||||
|
|
Loading…
Reference in New Issue