diff options
Diffstat (limited to 'windowPatches.go')
| -rw-r--r-- | windowPatches.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/windowPatches.go b/windowPatches.go index 3902444..d9bfd9e 100644 --- a/windowPatches.go +++ b/windowPatches.go @@ -79,7 +79,9 @@ func submitPatchesBox(box *gui.Node) *patchSummary { }) s.grid.NewButton("List Patchsets", func() { - listPatches() + if err := listPatches(); err != nil { + log.Info(err) + } }) s.grid.NewButton("Show Latest Patchset", func() { |
