Skip to content

Commit

Permalink
fix organize show
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeldmann committed Feb 11, 2024
1 parent 07183d0 commit e2b34be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- Fixes the `organize show` command which broke in v3.1.0.

## v3.1.0 (2024-02-04)

- Add a new output format `errorsonly` which only shows output if an error occured.
Expand Down
2 changes: 1 addition & 1 deletion organize/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def show(config: Optional[str], path: bool, reveal: bool) -> None:
_open_uri(config_path.parent.as_uri())
else:
syntax = Syntax(config_path.read_text(encoding="utf-8"), "yaml")
console.print(escape(syntax))
console.print(syntax)


def list_() -> None:
Expand Down

0 comments on commit e2b34be

Please sign in to comment.