Fixes #1774 by adding a logmessage for non ascii install path.

This commit is contained in:
Benjamin Fischer
2022-03-12 01:53:13 +01:00
committed by RndName
parent 91bb5acd04
commit 42929b08d8

View File

@@ -312,6 +312,11 @@ def main():
logging.debug("Python version %s", sys.version)
if not str(Path(__file__)).isascii():
logging.warning(
"Installation path contains non-ASCII characters. This is known to cause problems."
)
game: Optional[Game] = None
args = parse_args()