From 6d08c160e0d0cf36c07085bac01ed1b4f457f113 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Sun, 10 Mar 2024 19:10:27 +0800 Subject: [PATCH] Update __init__.py --- route/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/route/__init__.py b/route/__init__.py index 6f6b7ffac..e1bc89555 100755 --- a/route/__init__.py +++ b/route/__init__.py @@ -321,8 +321,6 @@ def verifyLogin(): if os.path.exists(auth_file): content = mw.readFile(auth_file) sec = mw.deDoubleCrypt('mdserver-web', content) - - print(sec) totp = pyotp.TOTP(sec) if totp.verify(auth): userInfo = mw.M('users').where("id=?", (1,)).field('id,username,password').find()