diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-02 13:31:30 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-02 13:31:30 +0800 |
commit | 1f2758286769fec0bcff2be3457fe243035269a2 (patch) | |
tree | 34c1cce9d3526d6eef4816aa786c29166959101e /fg21sim/webui | |
parent | 2b8dda20b1737794c82ab29a0221e3ffe96cd26c (diff) | |
download | fg21sim-1f2758286769fec0bcff2be3457fe243035269a2.tar.bz2 |
Numba: disable/restrict the Numba JIT usage; needs refactor -> Cython ...
Diffstat (limited to 'fg21sim/webui')
-rw-r--r-- | fg21sim/webui/handlers/console.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fg21sim/webui/handlers/console.py b/fg21sim/webui/handlers/console.py index fece851..caf69e3 100644 --- a/fg21sim/webui/handlers/console.py +++ b/fg21sim/webui/handlers/console.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016 Weitian LI <liweitianux@live.com> +# Copyright (c) 2016,2018 Weitian LI <weitian@aaronly.me> # MIT license """ @@ -174,7 +174,7 @@ class ConsoleAJAXHandler(BaseRequestHandler): logger.info("Checking the configurations ...") self.configs.check_all() # - logger.info("Importing modules + Numba JIT, waiting ...") + logger.info("Importing modules, waiting ...") from ...foregrounds import Foregrounds # fg = Foregrounds(self.configs) |