diff --git a/authentik/stages/deny/models.py b/authentik/stages/deny/models.py index 4ef252e3c..4aa2e692f 100644 --- a/authentik/stages/deny/models.py +++ b/authentik/stages/deny/models.py @@ -8,7 +8,7 @@ from authentik.flows.models import Stage class DenyStage(Stage): - """Cancells the current flow.""" + """Cancels the current flow.""" @property def serializer(self) -> type[BaseSerializer]: diff --git a/authentik/stages/deny/stage.py b/authentik/stages/deny/stage.py index 0513c269a..4e9e93d0c 100644 --- a/authentik/stages/deny/stage.py +++ b/authentik/stages/deny/stage.py @@ -5,10 +5,10 @@ from authentik.flows.stage import StageView class DenyStageView(StageView): - """Cancells the current flow""" + """Cancels the current flow""" def get(self, request: HttpRequest) -> HttpResponse: - """Cancells the current flow""" + """Cancels the current flow""" return self.executor.stage_invalid() def post(self, request: HttpRequest) -> HttpResponse: