aboutsummaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-09-28 15:06:04 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2019-09-28 15:06:04 +0100
commitebe0c7f30fd5442d05e44c87b8313632aaccbf1e (patch)
tree8395888570d3ead93456f2e41cf890a6d36508da /cli.py
parentversion fix and renamed executible to datamaps (diff)
multiprocessing fix
Diffstat (limited to '')
-rw-r--r--cli.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli.py b/cli.py
index 0f67e43..df28b8e 100644
--- a/cli.py
+++ b/cli.py
@@ -1,6 +1,8 @@
+import multiprocessing
import sys
from datamaps.main import cli
if __name__ == '__main__':
+ multiprocessing.freeze_support()
cli(sys.argv[1:]) \ No newline at end of file