This commit is contained in:
Balakrishnan Balasubramanian 2018-12-19 02:10:16 -05:00
parent 179112e005
commit 2cacf20393

View File

@ -98,6 +98,7 @@ async def auth_stage():
raise AuthError("Already logged in")
else:
write(ok("Login successful"))
return username
except AuthError as ae:
write(err(f"Auth Failed: {ae}"))
except ClientQuit as c: