Skip to content

Commit

Permalink
Fix spacing for info output
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasjacobsen committed Aug 9, 2024
1 parent 82d635a commit 34588eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ramble/ramble/cmd/common/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def print_single_attribute(obj, attr, verbose=False, pattern="*", format=support
elif format == supported_formats.text:
color.cprint(colified(to_print, tty=True, indent=4))
else:
color.cprint(" " + str(to_print))
color.cprint(f" {str(to_print)}\n")
else:
# With verbose output, and a dict attribute, we try to print all of the
# sub items. These need to be iterated over, and we need to escape
Expand Down

0 comments on commit 34588eb

Please sign in to comment.