mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-19 15:53:48 +00:00
only handle ENOENT
This commit is contained in:
@ -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():
|
||||||
|
Reference in New Issue
Block a user