aboutsummaryrefslogtreecommitdiffstats
path: root/epy.py
diff options
context:
space:
mode:
authorbenadha <benawiadha@gmail.com>2022-02-14 21:09:09 +0700
committerbenadha <benawiadha@gmail.com>2022-02-14 21:09:09 +0700
commit8dede2af524f0d3a76de3f873f4abcf50dbc9d2b (patch)
tree8601ea25e11f1227e80cf5d13f2a781ca23ec5ac /epy.py
parent06d17dfa81c929260da42b1f6f23565cfeaf932e (diff)
downloadepy-8dede2af524f0d3a76de3f873f4abcf50dbc9d2b.tar.gz
Fixed unrecognized --multiprocessing-fork error on Windows
Diffstat (limited to 'epy.py')
-rwxr-xr-xepy.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/epy.py b/epy.py
index 948b7c0..8cd6040 100755
--- a/epy.py
+++ b/epy.py
@@ -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()