From 7eeaf8a5f693578bc78a538e3a009fc87578348f Mon Sep 17 00:00:00 2001 From: NavaL Date: Fri, 28 Oct 2016 18:30:19 +0200 Subject: adding custom messages per types of auth errors #795 --- service/pixelated/authentication.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'service/pixelated/authentication.py') diff --git a/service/pixelated/authentication.py b/service/pixelated/authentication.py index aa1d8b5d..983086ce 100644 --- a/service/pixelated/authentication.py +++ b/service/pixelated/authentication.py @@ -42,7 +42,7 @@ class Authenticator(object): try: auth = yield self._bonafide_auth(username, password) except SRPAuthError: - raise UnauthorizedLogin() + raise UnauthorizedLogin("User typed wrong password/username combination.") returnValue(auth) @inlineCallbacks @@ -59,7 +59,7 @@ class Authenticator(object): extracted_username = self.extract_username(username) if self.username_with_domain(extracted_username) == username: return extracted_username - raise UnauthorizedLogin() + raise UnauthorizedLogin('User typed a wrong domain.') def extract_username(self, username): return re.search('^([^@]+)@?.*$', username).group(1) -- cgit v1.2.3