diff options
| author | Paweł Jastrzębski <[email protected]> | 2019-03-08 08:44:48 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-03-08 08:44:48 +0100 |
| commit | 35bba68a7244c13d165687786286319228384a84 (patch) | |
| tree | 67c1c6006eb7fc046d428fae69140a0eb2a4b242 /kcc-c2e.py | |
| parent | Tweaks for OSX binary (diff) | |
| parent | Stabilise multiprocessing on OSX (diff) | |
| download | kcc-35bba68a7244c13d165687786286319228384a84.tar.gz kcc-35bba68a7244c13d165687786286319228384a84.tar.bz2 kcc-35bba68a7244c13d165687786286319228384a84.zip | |
Merge pull request #308 from ciromattia/dev
5.5.1
Diffstat (limited to 'kcc-c2e.py')
| -rwxr-xr-x | kcc-c2e.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kcc-c2e.py b/kcc-c2e.py index d2188a7..72606d5 100755 --- a/kcc-c2e.py +++ b/kcc-c2e.py @@ -23,9 +23,10 @@ if sys.version_info[0] != 3: print('ERROR: This is Python 3 script!') exit(1) -from multiprocessing import freeze_support +from multiprocessing import freeze_support, set_start_method from kindlecomicconverter.startup import startC2E if __name__ == "__main__": + set_start_method('spawn') freeze_support() startC2E() |