diff options
Diffstat (limited to 'commands/status_open.go')
-rw-r--r-- | commands/status_open.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/status_open.go b/commands/status_open.go index 5e3029e2..9a2b76ab 100644 --- a/commands/status_open.go +++ b/commands/status_open.go @@ -20,7 +20,7 @@ func runStatusOpen(cmd *cobra.Command, args []string) error { return err } - err = b.Open() + _, err = b.Open() if err != nil { return err } @@ -30,7 +30,7 @@ func runStatusOpen(cmd *cobra.Command, args []string) error { var openCmd = &cobra.Command{ Use: "open [<id>]", - Short: "Mark a bug as open", + Short: "Mark a bug as open.", PreRunE: loadRepo, RunE: runStatusOpen, } |