From ff532f2064e5ae0c7cefc9dabefcca582ee14436 Mon Sep 17 00:00:00 2001 From: Matt Jaffee Date: Fri, 3 Mar 2017 15:01:29 -0600 Subject: [PATCH] fix help text in restore command --- cmd/restore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restore.go b/cmd/restore.go index 420cd9c5f..44899e4ca 100644 --- a/cmd/restore.go +++ b/cmd/restore.go @@ -31,7 +31,7 @@ func init() { restoreCmd.Flags().StringVarP(&restorer.Host, "host", "", "localhost:15000", "host:port of Pilosa.") restoreCmd.Flags().StringVarP(&restorer.Database, "database", "d", "", "Pilosa database to restore into.") restoreCmd.Flags().StringVarP(&restorer.Frame, "frame", "f", "", "Frame to restore into.") - restoreCmd.Flags().StringVarP(&restorer.Path, "input-file", "i", "", "File to write restore from") + restoreCmd.Flags().StringVarP(&restorer.Path, "input-file", "i", "", "File to restore from.") err := viper.BindPFlags(restoreCmd.Flags()) if err != nil {