From 0fa096f9ba8d43e1b5bd9309ef0766ce5f3d7b3d Mon Sep 17 00:00:00 2001 From: Kirill Zhosul Date: Wed, 16 Mar 2022 13:38:10 +0400 Subject: [PATCH] Fix wrong ru/en reasons --- gitflic/exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitflic/exceptions.py b/gitflic/exceptions.py index 44fe072..e59d8dc 100644 --- a/gitflic/exceptions.py +++ b/gitflic/exceptions.py @@ -12,8 +12,8 @@ class AuthError(GitflicExceptions): class NoRights(GitflicExceptions): error_code = 403 - reason = "Нет прав для доступа." - reason_ru = "There are no access rights." + reason = "There are no access rights." + reason_ru = "Нет прав для доступа." class NotFound(GitflicExceptions):