diff options
| author | Tomás Touceda <chiiph@leap.se> | 2013-05-23 16:33:17 -0300 | 
|---|---|---|
| committer | Tomás Touceda <chiiph@leap.se> | 2013-05-23 16:33:17 -0300 | 
| commit | 8cef16cd458801b1513bbcd6849edc4599204b6f (patch) | |
| tree | c53614e9d5f0e88f0a0bb4e89cd08ef2ea768227 /src/leap/soledad/auth.py | |
| parent | eb7cd9f51ae2661aea6d36a6660b324ed06193c9 (diff) | |
| parent | 6fc38f043e51131647e2a16dad8e1abd10440821 (diff) | |
Merge remote-tracking branch 'drebs/feature/2491-soledad-server-create-the-shared-database-in-couch' into develop
Diffstat (limited to 'src/leap/soledad/auth.py')
| -rw-r--r-- | src/leap/soledad/auth.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/leap/soledad/auth.py b/src/leap/soledad/auth.py index 562a8263..8c093099 100644 --- a/src/leap/soledad/auth.py +++ b/src/leap/soledad/auth.py @@ -25,6 +25,7 @@ they can do token-based auth requests to the Soledad server.  from u1db.remote.http_client import HTTPClientBase +from u1db import errors  class TokenBasedAuth(object): @@ -66,5 +67,5 @@ class TokenBasedAuth(object):              auth = '%s:%s' % (uuid, token)              return [('Authorization', 'Token %s' % auth.encode('base64')[:-1])]          else: -            return HTTPClientBase._sign_request( -                self, method, url_query, params) +            raise errors.UnknownAuthMethod( +                'Wrong credentials: %s' % self._creds) | 
