Skip to content

Commit

Permalink
sahib#577 - Fix GUI: "Same file extension" error
Browse files Browse the repository at this point in the history
  • Loading branch information
combs committed Aug 14, 2022
1 parent 854af40 commit dd93d0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit dd93d0f

Please sign in to comment.