From 8b9511f9ed5d8bb477f2c32cd808c466073b268c Mon Sep 17 00:00:00 2001 From: f00wl <f00wl@felinn.org> Date: Tue, 21 Feb 2023 23:52:42 +0100 Subject: [PATCH] =?UTF-8?q?fix(typo):=20invalid=20keywor,=20=C2=ABd=C2=BB?= =?UTF-8?q?=20missing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hiboo/account/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hiboo/account/settings.py b/hiboo/account/settings.py index 2b3f32d..3b63838 100644 --- a/hiboo/account/settings.py +++ b/hiboo/account/settings.py @@ -50,7 +50,7 @@ def totp(): def totp_enable(): user = flask_login.current_user if models.Auth.TOTP not in user.auths: - auth = models.Auth(models.Auth.TOTP, enable=False) + auth = models.Auth(models.Auth.TOTP, enabled=False) auth.set_otp_key() user.auths[models.Auth.TOTP] = auth models.db.session.add(auth) -- GitLab