mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
Fix linting conflicts
This commit is contained in:
parent
e7c28a8ca9
commit
c0a69ad2a8
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ def clean_path(path):
|
|||
path_clean = re.sub(r"[<>:|?*\"\/\\]", "-", path)
|
||||
# This checks for strings that end in ... or similar,
|
||||
# weird corner case that affects fewer than 0.1% of titles
|
||||
path_clean = re.sub(r'(.)[.]\1+$', "-", path_clean)
|
||||
path_clean = re.sub(r"(.)[.]\1+$", "-", path_clean)
|
||||
return path_clean
|
||||
return path
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue