Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion openage/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def main(argv=None):
multiprocessing.freeze_support()

# openage is complicated and multithreaded; better not use fork.
multiprocessing.set_start_method('spawn')
if mmultiprocessing.get_start_method(allow_none=True) is None:
mmultiprocessing.set_start_method('spawn')
Comment on lines +178 to +179
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems to be a typo - an additional m.


sys.exit(main())