mirror of
https://github.com/enzet/map-machine.git
synced 2025-06-10 06:41:48 +02:00
Issue #89: fix encoding.
This commit is contained in:
parent
7859677f62
commit
c40af57cb7
1 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,9 @@ __email__ = "me@enzet.ru"
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
"""Map Machine command-line entry point."""
|
"""Map Machine command-line entry point."""
|
||||||
|
sys.stdin.reconfigure(encoding="utf-8")
|
||||||
|
sys.stdout.reconfigure(encoding="utf-8")
|
||||||
|
|
||||||
logging.basicConfig(format="%(levelname)s %(message)s", level=logging.INFO)
|
logging.basicConfig(format="%(levelname)s %(message)s", level=logging.INFO)
|
||||||
workspace: Workspace = Workspace(Path("out"))
|
workspace: Workspace = Workspace(Path("out"))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue