From 449de440ae1d3e533291ff6a2f41edd702c7746a Mon Sep 17 00:00:00 2001 From: PaixuAabuizia Date: Wed, 3 Feb 2016 11:59:52 +0100 Subject: [bug] frozen backend fails to spawn on windows according to [1] the backend should raise a Runtime Error, instead what happens is that the process is spawned again and again but never runs actual code. [1] https://docs.python.org/2.7/library/multiprocessing.html#multiprocessing.freeze_support --- src/leap/bitmask/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/leap/bitmask/app.py b/src/leap/bitmask/app.py index 982d8a13..dc1ee6df 100644 --- a/src/leap/bitmask/app.py +++ b/src/leap/bitmask/app.py @@ -237,4 +237,5 @@ def start_app(): if __name__ == "__main__": + multiprocessing.freeze_support() start_app() -- cgit v1.2.3