mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-18 23:38:18 +00:00
Merge branch 'master' into 3031-replace-pycryptopp
This commit is contained in:
@ -205,7 +205,7 @@ def create_client(basedir=u".", _client_factory=None):
|
||||
_client_factory=_client_factory,
|
||||
)
|
||||
except Exception:
|
||||
return Failure()
|
||||
return defer.fail()
|
||||
|
||||
|
||||
def create_client_from_config(config, _client_factory=None):
|
||||
@ -259,7 +259,7 @@ def create_client_from_config(config, _client_factory=None):
|
||||
storage_broker.setServiceParent(client)
|
||||
return defer.succeed(client)
|
||||
except Exception:
|
||||
return Failure()
|
||||
return defer.fail()
|
||||
|
||||
|
||||
def _sequencer(config):
|
||||
|
Reference in New Issue
Block a user