mirror of
https://github.com/octoleo/restic.git
synced 2024-12-22 10:58:55 +00:00
Rename Table.Print -> Table.Write
This commit is contained in:
parent
5c9c1c9dbd
commit
a981141e49
@ -49,7 +49,7 @@ func list_keys(s restic.Server) error {
|
||||
k.Username, k.Hostname, k.Created.Format(TimeFormat)})
|
||||
})
|
||||
|
||||
tab.Print(os.Stdout)
|
||||
tab.Write(os.Stdout)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ func NewTable() Table {
|
||||
}
|
||||
}
|
||||
|
||||
func (t Table) Print(w io.Writer) error {
|
||||
func (t Table) Write(w io.Writer) error {
|
||||
_, err := fmt.Fprintln(w, t.Header)
|
||||
if err != nil {
|
||||
return err
|
||||
@ -136,7 +136,7 @@ func (cmd CmdSnapshots) Execute(args []string) error {
|
||||
tab.Rows = append(tab.Rows, []interface{}{sn.ID()[:plen], sn.Time.Format(TimeFormat), sn.Hostname, sn.Dir})
|
||||
}
|
||||
|
||||
tab.Print(os.Stdout)
|
||||
tab.Write(os.Stdout)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user