summaryrefslogtreecommitdiff
path: root/doShow.go
diff options
context:
space:
mode:
Diffstat (limited to 'doShow.go')
-rw-r--r--doShow.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/doShow.go b/doShow.go
index 1b11f2e..e18b63f 100644
--- a/doShow.go
+++ b/doShow.go
@@ -40,13 +40,9 @@ func doShow() (string, error) {
footer := me.forge.PrintForgedTable(found)
return "repos with patches or unsaved changes: " + footer, nil
}
- var footer string
+
// print out the repos
- if argv.All {
- footer = me.forge.PrintHumanTableFull(found)
- } else {
- footer = me.forge.PrintDefaultTB(found)
- }
+ footer := found.PrintDefaultTB()
return footer, nil
}