From ae741212290cc3ba60c935ab5698121132cb3a04 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 24 Oct 2024 14:39:19 +0800 Subject: [PATCH] Update index.py --- plugins/docker/index.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/docker/index.py b/plugins/docker/index.py index e528d9ced..59488cead 100755 --- a/plugins/docker/index.py +++ b/plugins/docker/index.py @@ -10,7 +10,11 @@ import json sys.path.append(os.getcwd() + "/class/core") import mw -import docker +try: + import docker +except Exception as e: + pass + app_debug = False