diff options
| author | Jeff Carr <[email protected]> | 2025-01-17 09:47:21 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-17 09:47:21 -0600 |
| commit | af84727178d1fbe1df04a5f8ee536798f3761d6d (patch) | |
| tree | 913b88f3f6b69420514df8bb758b55e4356b7cd2 /windowPatches.go | |
| parent | 4f282cc30200c5896db2ae4677b20c6f8c1f1abc (diff) | |
show list patch error
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() { |
