Skip to content

Commit

Permalink
Merge pull request #56 from lhh/truncate_by_specified_width
Browse files Browse the repository at this point in the history
jira: Truncate field headers
  • Loading branch information
lhh authored Sep 19, 2024
2 parents 44c8d94 + 5d7da3d commit da73e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jirate/jira_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def print_issues_by_field(issue_list, args=None):
fields = parse_field_widths(args.fields, ignore_fields=['key'], starting_fields=fields)

output = []
output.append(list(fields.keys()))
output.append(list(truncate(key, fields[key]) for key in fields))
del fields['key']

found_fields = []
Expand Down

0 comments on commit da73e4a

Please sign in to comment.