6 lines
143 B
Python
6 lines
143 B
Python
|
|
import multiprocessing
|
||
|
|
import sys
|
||
|
|
|
||
|
|
if getattr(sys, 'frozen', False):
|
||
|
|
# Running as a frozen executable
|
||
|
|
multiprocessing.freeze_support()
|