Merge pull request #901 from tahoe-lafs/3513.raiseException

Fix exception re-raising in no_network.py

Fixes: ticket:3513
This commit is contained in:
Jean-Paul Calderone 2020-11-25 10:41:15 -05:00 committed by GitHub
commit bd9a91abf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

0
newsfragments/3513.minor Normal file
View File

View File

@ -357,7 +357,7 @@ class NoNetworkGrid(service.MultiService):
to complete properly
"""
if self._setup_errors:
raise self._setup_errors[0].value
self._setup_errors[0].raiseException()
@defer.inlineCallbacks
def make_client(self, i, write_config=True):