only handle ENOENT

This commit is contained in:
meejah
2018-09-04 14:56:58 -06:00
parent a5287add80
commit 9aae4bd459

View File

@ -301,7 +301,9 @@ def create_introducer_clients(config, main_tub):
len(introducers), len(introducers),
) )
) )
except EnvironmentError: except EnvironmentError as e:
if e.errno != ENOENT:
raise
introducers = {} introducers = {}
if "default" in introducers.keys(): if "default" in introducers.keys():