mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Fixes #1774 by adding a logmessage for non ascii install path.
This commit is contained in:
committed by
RndName
parent
91bb5acd04
commit
42929b08d8
@@ -312,6 +312,11 @@ def main():
|
|||||||
|
|
||||||
logging.debug("Python version %s", sys.version)
|
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
|
game: Optional[Game] = None
|
||||||
|
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
|
|||||||
Reference in New Issue
Block a user