Skip to content

Commit 013fb7f

Browse files
committedAug 11, 2021
Fixed #1801: CLI bug (--exend-skip-glob, overrides instead of extending).
1 parent c29c6d6 commit 013fb7f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/
66

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

1011
#### Potentially breaking changes:
1112
- Fixed #1785: `_ast` module incorrectly excluded from stdlib definition.

‎isort/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
346346
target_group.add_argument(
347347
"--extend-skip-glob",
348348
help="Additional files that isort should skip over (extending --skip-glob).",
349-
dest="skip_glob",
349+
dest="extend_skip_glob",
350350
action="append",
351351
)
352352
target_group.add_argument(

0 commit comments

Comments
 (0)
Please sign in to comment.