2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 08:00:48 +00:00

Start error message with a lower case character

This commit is contained in:
Alexander Neumann 2017-02-03 17:06:06 +01:00
parent d0de1ed2e4
commit 22f3e21266

View File

@ -236,7 +236,7 @@ func readBackupFromStdin(opts BackupOptions, gopts GlobalOptions, args []string)
}
if gopts.password == "" && gopts.PasswordFile == "" {
return errors.Fatal("Unable to read password from stdin when data is to be read from stdin, use --password-file or $RESTIC_PASSWORD")
return errors.Fatal("unable to read password from stdin when data is to be read from stdin, use --password-file or $RESTIC_PASSWORD")
}
repo, err := OpenRepository(gopts)