Skip to content

Commit

Permalink
Fixed #1801: CLI bug (--exend-skip-glob, overrides instead of extendi…
Browse files Browse the repository at this point in the history
…ng).
  • Loading branch information
timothycrosley committed Aug 11, 2021
1 parent c29c6d6 commit 013fb7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/

### 5.10.0 TBD
- Implemented #1796: Switch to `tomli` for pyproject.toml configuration loader.
- Fixed #1801: CLI bug (--exend-skip-glob, overrides instead of extending).

#### Potentially breaking changes:
- Fixed #1785: `_ast` module incorrectly excluded from stdlib definition.
Expand Down
2 changes: 1 addition & 1 deletion isort/main.py
Expand Up @@ -346,7 +346,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
target_group.add_argument(
"--extend-skip-glob",
help="Additional files that isort should skip over (extending --skip-glob).",
dest="skip_glob",
dest="extend_skip_glob",
action="append",
)
target_group.add_argument(
Expand Down

0 comments on commit 013fb7f

Please sign in to comment.