From 31ff7c89ee4b682e4b990432bb5e0b929a12fedf Mon Sep 17 00:00:00 2001 From: jssuzanne Date: Fri, 2 Feb 2018 16:19:49 +0100 Subject: [PATCH] Fix RecursionError for python version < 3.5 --- anyblok_pyramid/bloks/auth/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anyblok_pyramid/bloks/auth/exceptions.py b/anyblok_pyramid/bloks/auth/exceptions.py index f52733a..6462707 100644 --- a/anyblok_pyramid/bloks/auth/exceptions.py +++ b/anyblok_pyramid/bloks/auth/exceptions.py @@ -8,7 +8,7 @@ from anyblok.common import python_version if python_version() >= (3, 5): - MainException = RecursionError + MainException = RecursionError # noqa else: MainException = RuntimeError