summaryrefslogtreecommitdiff
path: root/doDirty.go
diff options
context:
space:
mode:
Diffstat (limited to 'doDirty.go')
-rw-r--r--doDirty.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/doDirty.go b/doDirty.go
index 702302a..dc40e98 100644
--- a/doDirty.go
+++ b/doDirty.go
@@ -10,12 +10,7 @@ func doDirty() (string, error) {
if found.Len() == 0 {
return "nothing dirty", nil
}
- var footer string
- if argv.Verbose {
- footer = me.forge.PrintHumanTableDirty(found)
- } else {
- footer = me.forge.PrintHumanTable(found)
- }
+ footer := found.PrintDefaultTB()
return footer, nil
}