fixed bug

This commit is contained in:
Lars Noack 2022-11-11 12:31:54 +01:00
parent 130ef6befb
commit 288e7a9b7b

View File

@ -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