summaryrefslogtreecommitdiff
path: root/service/pixelated/authentication.py
diff options
context:
space:
mode:
authorNavaL <ayoyo@thoughtworks.com>2016-10-28 18:30:19 +0200
committerNavaL <ayoyo@thoughtworks.com>2016-10-28 18:30:19 +0200
commit7eeaf8a5f693578bc78a538e3a009fc87578348f (patch)
treea5c699678e28d9333a120574048bc429c3976d39 /service/pixelated/authentication.py
parent9209525c5e88e4314711359b4e9fa42d6958403d (diff)
adding custom messages per types of auth errors #795
Diffstat (limited to 'service/pixelated/authentication.py')
-rw-r--r--service/pixelated/authentication.py4
1 files changed, 2 insertions, 2 deletions
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)