Fix authentication

c7d7ff3e85 broke it
This commit is contained in:
flan
2017-10-29 19:29:46 +01:00
parent 3f3e2f4df4
commit 3792c89ecb
2 changed files with 8 additions and 8 deletions

View File

@@ -120,7 +120,7 @@ class SqliteUserManager(SimpleUserManager):
logging.info("Changed password for user {}.".format(username))
def authenticate_user(self, username, password):
def authenticate(self, username, password):
"""Returns True if this username is allowed to connect with this password. False otherwise."""
conn = sqlite.connect(self.auth_db_path)