Skip to content

Commit 3267970

Browse files
authored
Fix spelling
Ay yo Jacob, nice typo
1 parent 879cda0 commit 3267970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async def new_user_handler(request):
6969
user = await db['users'].find_one({ "username": username })
7070
if user is not None: return res.json({ "message": "A user with this username already exists", "status": 409 })
7171
user = await db['users'].find_one({ "email": email })
72-
if user is not None: return res.json({ "message": "A user with thsi email already exists", "status": 409 })
72+
if user is not None: return res.json({ "message": "A user with this email already exists", "status": 409 })
7373

7474
# Hash password
7575
hashed_pass = ph.hash(password)

0 commit comments

Comments
 (0)