Rename Table.Print -> Table.Write

This commit is contained in:
Alexander Neumann 2014-12-22 11:21:14 +01:00
parent 5c9c1c9dbd
commit a981141e49
2 changed files with 3 additions and 3 deletions

View File

@ -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
}

View File

@ -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
}