2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-30 07:30:50 +00:00

Merge pull request #2959 from restic/keep-text

backup: Correct keep policy text
This commit is contained in:
MichaelEischer 2020-09-30 17:57:00 +02:00 committed by GitHub
commit 48d0ab5276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ type ExpirePolicy struct {
func (e ExpirePolicy) String() (s string) {
var keeps []string
if e.Last > 0 {
keeps = append(keeps, fmt.Sprintf("%d snapshots", e.Last))
keeps = append(keeps, fmt.Sprintf("%d latest", e.Last))
}
if e.Hourly > 0 {
keeps = append(keeps, fmt.Sprintf("%d hourly", e.Hourly))
@ -44,7 +44,7 @@ func (e ExpirePolicy) String() (s string) {
}
if len(keeps) > 0 {
s = fmt.Sprintf("keep the last %s snapshots", strings.Join(keeps, ", "))
s = fmt.Sprintf("keep %s snapshots", strings.Join(keeps, ", "))
}
if len(e.Tags) > 0 {