diff options
Diffstat (limited to 'src/connection.py')
-rw-r--r-- | src/connection.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/connection.py b/src/connection.py index e20aaab5..d7b1ac6a 100644 --- a/src/connection.py +++ b/src/connection.py @@ -102,10 +102,7 @@ class Connection(threading.Thread): self.client.auth(None, "", self.resource) return True except TypeError: - self.handler.emit('error', msg=_('Error: Could not \ - authenticate. Please make sure the server you chose \ - (%s) supports anonymous authentication' - % (config.get('server', '')))) + self.handler.emit('error', msg=_('Error: Could not authenticate. Please make sure the server you chose (%s) supports anonymous authentication' % (config.get('server', '')))) return False else: password = config.get('password', '') |