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:
parent
769fe12159
commit
827c68bf75
@ -335,6 +335,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()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user