diff options
author | benadha <benawiadha@gmail.com> | 2022-02-14 21:09:09 +0700 |
---|---|---|
committer | benadha <benawiadha@gmail.com> | 2022-02-14 21:09:09 +0700 |
commit | 8dede2af524f0d3a76de3f873f4abcf50dbc9d2b (patch) | |
tree | 8601ea25e11f1227e80cf5d13f2a781ca23ec5ac /epy.py | |
parent | 06d17dfa81c929260da42b1f6f23565cfeaf932e (diff) | |
download | epy-8dede2af524f0d3a76de3f873f4abcf50dbc9d2b.tar.gz |
Fixed unrecognized --multiprocessing-fork error on Windows
Diffstat (limited to 'epy.py')
-rwxr-xr-x | epy.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -23,7 +23,7 @@ examples: """ -__version__ = "2022.2.5" +__version__ = "2022.2.14" __license__ = "GPL-3.0" __author__ = "Benawi Adha" __email__ = "benawiadha@gmail.com" @@ -3975,4 +3975,7 @@ def main(): if __name__ == "__main__": + # On Windows, calling this method is necessary + # On Linux/OSX, this method does nothing + multiprocessing.freeze_support() main() |