Module: check_mk
Branch: master
Commit: 9ae68efb9e62d1cfcd80b59c61cd12eba53c5c49
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=9ae68efb9e62d1…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Jul 13 10:14:17 2018 +0200
Fixed wrong conditional import of CME specific module
Change-Id: Ica98cd7d05d1ef2b0ae65eb3a678858d1689cec0
---
cmk/gui/modules.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmk/gui/modules.py b/cmk/gui/modules.py
index 953db41..3ee5695 100644
--- a/cmk/gui/modules.py
+++ b/cmk/gui/modules.py
@@ -61,7 +61,7 @@ import cmk.gui.plugins.main_modules
if not cmk.is_raw_edition():
import cmk.gui.cee.plugins.main_modules
-if not cmk.is_managed_edition():
+if cmk.is_managed_edition():
import cmk.gui.cme.plugins.main_modules
# TODO: Both kept for compatibility with old plugins. Drop this one day