diff --git a/cmd/restic/cmd_find.go b/cmd/restic/cmd_find.go index 5025e9d21..48b952f5d 100644 --- a/cmd/restic/cmd_find.go +++ b/cmd/restic/cmd_find.go @@ -213,7 +213,7 @@ func (s *statefulOutput) PrintObjectNormal(kind, id, nodepath, treeID string, sn } else { Printf(" ... path %s\n", nodepath) } - Printf(" ... in snapshot %s (%s)\n", sn.ID().Str(), sn.Time.Format(TimeFormat)) + Printf(" ... in snapshot %s (%s)\n", sn.ID().Str(), sn.Time.Local().Format(TimeFormat)) } func (s *statefulOutput) PrintObject(kind, id, nodepath, treeID string, sn *restic.Snapshot) { diff --git a/cmd/restic/cmd_key.go b/cmd/restic/cmd_key.go index 900b29d50..38ad77790 100644 --- a/cmd/restic/cmd_key.go +++ b/cmd/restic/cmd_key.go @@ -59,7 +59,7 @@ func listKeys(ctx context.Context, s *repository.Repository, gopts GlobalOptions ID: id.Str(), UserName: k.Username, HostName: k.Hostname, - Created: k.Created.Format(TimeFormat), + Created: k.Created.Local().Format(TimeFormat), } keys = append(keys, key) diff --git a/cmd/restic/cmd_snapshots.go b/cmd/restic/cmd_snapshots.go index 4655bb928..d9623b942 100644 --- a/cmd/restic/cmd_snapshots.go +++ b/cmd/restic/cmd_snapshots.go @@ -184,7 +184,7 @@ func PrintSnapshots(stdout io.Writer, list restic.Snapshots, reasons []restic.Ke for _, sn := range list { data := snapshot{ ID: sn.ID().Str(), - Timestamp: sn.Time.Format(TimeFormat), + Timestamp: sn.Time.Local().Format(TimeFormat), Hostname: sn.Hostname, Tags: sn.Tags, Paths: sn.Paths, diff --git a/cmd/restic/format.go b/cmd/restic/format.go index f915bc77e..d623371b8 100644 --- a/cmd/restic/format.go +++ b/cmd/restic/format.go @@ -90,6 +90,6 @@ func formatNode(path string, n *restic.Node, long bool) string { return fmt.Sprintf("%s %5d %5d %6d %s %s%s", mode|n.Mode, n.UID, n.GID, n.Size, - n.ModTime.Format(TimeFormat), path, + n.ModTime.Local().Format(TimeFormat), path, target) }