diff --git a/login/kratos.py b/login/kratos.py index 63ca6cb5268af51767e0ac73ff0b12d812f3cb08..60593afba15dc4a0c9709551be666fda0c1a98c9 100644 --- a/login/kratos.py +++ b/login/kratos.py @@ -244,7 +244,7 @@ class KratosUser(): print(f"Opening: {recovery_url}") search = re.match(r'.*(self-service.recovery.flow.*)$', recovery_url) if search: - recovery_url = api_url + "/" . search.group(1) + recovery_url = api_url + "/" + search.group(1) print(f"Opening: {recovery_url}") opener.open(recovery_url) # If we do not have a 2xx status, urllib throws an error, as we "stopped"