fix(chalice): replaced ’ with ' (#2109)
This commit is contained in:
parent
0228e6cadb
commit
ed6b24b26b
2 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
|
|||
if r is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail="You’ve entered invalid Email or Password."
|
||||
detail="You've entered invalid Email or Password."
|
||||
)
|
||||
if "errors" in r:
|
||||
raise HTTPException(
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
|
|||
if r is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail="You’ve entered invalid Email or Password."
|
||||
detail="You've entered invalid Email or Password."
|
||||
)
|
||||
if "errors" in r:
|
||||
raise HTTPException(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue