From 41fc7c45a48a4ba99ddac614331955e6cf8c6dff Mon Sep 17 00:00:00 2001 From: ranelpadon Date: Thu, 5 Feb 2015 01:54:44 +0800 Subject: [PATCH] Set the default timeout value to a more practical one, especially for large JS files --- Minify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minify.py b/Minify.py index 17ea2b6..8a05516 100644 --- a/Minify.py +++ b/Minify.py @@ -25,7 +25,7 @@ def run(self, edit): thread = CompilerCall( sel, selbody, - timeout=5, + timeout=30, level=self.settings.get('optimization_level', "WHITESPACE_ONLY"), rm_new_lines=self.settings.get('remove_new_lines', False))