blueprints.auth: fix create_user call

This commit is contained in:
Luna 2019-10-25 09:00:21 -03:00
parent 4d87256cc3
commit 2674e76e62
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ async def register():
username, password = j["username"], j["password"] username, password = j["username"], j["password"]
new_id, pwd_hash = await create_user(username, email, password, app.db) new_id, pwd_hash = await create_user(username, email, password)
if invite: if invite:
try: try: