diff options
Diffstat (limited to 'doPatch.go')
| -rw-r--r-- | doPatch.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,12 +31,12 @@ func doPatch() error { // if no option is given to patch, list out the // repos that have patches ready in them - findReposWithPatches() - if me.found.Len() == 0 { + found := findReposWithPatches() + if found.Len() == 0 { log.Info("you currently have no patches in your user branches") return nil } - me.forge.PrintHumanTable(me.found) + me.forge.PrintHumanTable(found) return nil } |
