Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
revue: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ikarius committed Oct 21, 2024
1 parent 7b70fb2 commit e63dcc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dora/oidc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def create_user(self, claims):
email, sub = claims.get("email"), claims.get("sub")
if not email:
raise SuspiciousOperation(
"L'adresse e-mail n'est pas inclue dans les `claims`"
"L'adresse e-mail n'est pas incluse dans les `claims`"
)

if not sub:
raise SuspiciousOperation(
"Le sujet (`sub`) n'est pas inclu dans les `claims`"
"Le sujet (`sub`) n'est pas inclus dans les `claims`"
)

# L'utilisateur est créé sans mot de passe (aucune connexion à l'admin),
Expand Down

0 comments on commit e63dcc3

Please sign in to comment.