Skip to content

Commit

Permalink
Fix exclude paths in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
emdoyle committed Feb 8, 2024
1 parent 1dca014 commit 0a34ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modguard/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def handle_shared_arguments(args: argparse.Namespace):
if has_error:
sys.exit(1)

return argparse.Namespace(path=path, exclude_paths=exclude_paths)
return argparse.Namespace(path=path, exclude_paths=exclude_paths.split(","))


def modguard(args: argparse.Namespace):
Expand Down

0 comments on commit 0a34ba0

Please sign in to comment.