Skip to content

Commit

Permalink
remove debug change
Browse files Browse the repository at this point in the history
  • Loading branch information
Walavouchey committed Nov 30, 2023
1 parent 15bfedb commit ba3ba65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wikitools/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def exists_case_insensitive(path: pathlib.Path) -> bool:
Case-insensitive file/diretory existence check
"""

if False and os.name == 'nt':
if os.name == 'nt':
return path.exists()
else:
# case-insensitive directory/file existence checking isn't trivial in case-sensitive file systems because os-provided existence checks can't be relied upon
Expand Down
2 changes: 1 addition & 1 deletion wikitools_cli/VERSION.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.1.0"
VERSION = "2.1.1"

0 comments on commit ba3ba65

Please sign in to comment.