diff --git a/src/url_to_path.py b/src/url_to_path.py index 046d5d5..5892277 100644 --- a/src/url_to_path.py +++ b/src/url_to_path.py @@ -7,7 +7,7 @@ def unhide(part: str): if len(part) == 0: return "" if part[0] == ".": - return part.replace(".", UNHIDE_CHAR) + return part.replace(".", UNHIDE_CHAR, 1) return part