mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 07:06:41 +00:00
only handle ENOENT
This commit is contained in:
parent
a5287add80
commit
9aae4bd459
@ -301,7 +301,9 @@ def create_introducer_clients(config, main_tub):
|
||||
len(introducers),
|
||||
)
|
||||
)
|
||||
except EnvironmentError:
|
||||
except EnvironmentError as e:
|
||||
if e.errno != ENOENT:
|
||||
raise
|
||||
introducers = {}
|
||||
|
||||
if "default" in introducers.keys():
|
||||
|
Loading…
Reference in New Issue
Block a user