Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion watson/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ def _final_print(lines):

tags = project['tags']
if tags:
longest_tag = max(len(tag) for tag in tags or [''])
longest_tag = max(len(tag['name']) for tag in tags)

for tag in tags:
_print('\t[{tag} {time}]'.format(
Expand Down