snapshots: show location name instead of current timezone (#21877)

This commit is contained in:
Michael Eischer
2026-06-14 14:02:20 +02:00
committed by GitHub
parent 650f658244
commit 0536e15bbf
2 changed files with 10 additions and 5 deletions
+2 -5
View File
@@ -246,11 +246,8 @@ func PrintSnapshots(stdout io.Writer, list data.Snapshots, reasons []data.KeepRe
// Each snapshot can be registered in different timezones,
// but we display them all in local timezone on this output.
footer := fmt.Sprintf("%d snapshots", len(list))
zoneName, _ := time.Now().Local().Zone()
if zoneName != "" {
footer = fmt.Sprintf("Timestamps shown in %s timezone\n%s", zoneName, footer)
}
tab.AddFooter(footer)
zoneName := time.Now().Local().Location().String()
tab.AddFooter(fmt.Sprintf("Timestamps shown in %s timezone\n%s", zoneName, footer))
if multiline {
// print an additional blank line between snapshots