# HG changeset patch # User Goffi # Date 1616103359 -3600 # Node ID 11003f9f92fb81c69143610bb9d26b4bc2167921 # Parent 3ac28e51a24fc11598391da572f2c573038dc540 core: moved `sat_tmp.wokkel` install `sat_plugin`: This patch need to be installed early so it's available before anything imports `wokkel.data_form`. diff -r 3ac28e51a24f -r 11003f9f92fb sat/plugins/__init__.py --- a/sat/plugins/__init__.py Thu Mar 18 20:46:18 2021 +0100 +++ b/sat/plugins/__init__.py Thu Mar 18 22:35:59 2021 +0100 @@ -1,4 +0,0 @@ -# XXX: the Monkey Patch is here and not in src/__init__ to avoir issues with pyjamas compilation -# TODO: remove this when changes are merged in Wokkel -from sat_tmp.wokkel import install -install() diff -r 3ac28e51a24f -r 11003f9f92fb twisted/plugins/sat_plugin.py --- a/twisted/plugins/sat_plugin.py Thu Mar 18 20:46:18 2021 +0100 +++ b/twisted/plugins/sat_plugin.py Thu Mar 18 22:35:59 2021 +0100 @@ -26,6 +26,11 @@ from sat.core.constants import Const as C from sat.core.i18n import _ +from sat_tmp.wokkel import install as install_wokkel_patches + + +install_wokkel_patches() + def initialise(options): """Method to initialise global modules"""