From f32a40b53f2e395b4753a04b136a0e8a19a6c488 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Wed, 26 Jun 2024 19:03:51 +0800 Subject: [PATCH] Update index.py --- plugins/sphinx/index.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/sphinx/index.py b/plugins/sphinx/index.py index ea512e4ab..6ed62799d 100755 --- a/plugins/sphinx/index.py +++ b/plugins/sphinx/index.py @@ -389,14 +389,12 @@ def makeDbToSphinx(): def updateAll(): data = sphinxConfParse() - print(data) - + # print(data) cmd = data['cmd'] index = data['index'] for x in range(len(index)): cmd_index = cmd + ' ' + index[x]['index'] + ' --rotate' - print(cmd_index) os.system(cmd_index) return True