summaryrefslogtreecommitdiff
path: root/bin/pick/ui.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pick/ui.py')
-rw-r--r--bin/pick/ui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/pick/ui.py b/bin/pick/ui.py
index babb71cdc0d..b9a1c44db67 100644
--- a/bin/pick/ui.py
+++ b/bin/pick/ui.py
@@ -66,7 +66,8 @@ class CommitWidget(urwid.Text):
_selectable = True
def __init__(self, ui: 'UI', commit: 'core.Commit'):
- super().__init__(f'{commit.sha[:10]} {commit.description}')
+ reason = commit.nomination_type.name.ljust(6)
+ super().__init__(f'{reason} {commit.sha[:10]} {commit.description}')
self.ui = ui
self.commit = commit