Skip to content

Commit

Permalink
Capture limit command output
Browse files Browse the repository at this point in the history
  • Loading branch information
tbouska committed Nov 7, 2024
1 parent 2b26f25 commit fd77a39
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/muc/muc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ def limit(source_directory: Path, output: Path) -> None:
path_output = Path(output).resolve()
path_output.mkdir(exist_ok=True)
cfg.set_configuration_item("limit_path_output", path_output)
cmd = CommandLimit(cfg)
cmd.execute()

with logging_to_console():
cmd = CommandLimit(cfg)
cmd.execute()


@cli.command("tidy", help="Tidy directory")
Expand Down

0 comments on commit fd77a39

Please sign in to comment.