Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #577 - GUI: Choosing "Same file extension" results in "ERROR: Unknown option --match-with-extension." #578

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/rmlint.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ Traversal Options
Only consider those files as dupes that do not share the same basename.
See also ``man 1 basename``. The comparison of the basenames is case-insensitive.

:``-e --match-with-extension`` / ``-E --no-match-with-extension`` (**default**):
:``-e --match-extension`` / ``-E --no-match-extension`` (**default**):

Only consider those files as dupes that have the same file extension. For
example two photos would only match if they are a ``.png``. The extension is
Expand Down
2 changes: 1 addition & 1 deletion gui/shredder/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MatchType(Enum):
MAPPING = {
NONE: [],
BASENAME: ['--match-basename'],
EXTENSION: ['--match-with-extension'],
EXTENSION: ['--match-extension'],
WITHOUT_EXTENSION: ['--match-without-extension']
}

Expand Down