We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa173e commit 0e91e50Copy full SHA for 0e91e50
1 file changed
receptor/receptor.py
@@ -24,7 +24,7 @@ def __init__(self, config, node_id=None, router_cls=None,
24
self.controller_connections = []
25
self.base_path = os.path.join(self.config.default_data_dir, self.node_id)
26
if not os.path.exists(self.base_path):
27
- os.mkdir(os.path.join(self.config.default_data_dir, self.node_id))
+ os.makedirs(os.path.join(self.config.default_data_dir, self.node_id))
28
self.connection_manifest_path = os.path.join(self.base_path, "connection_manifest")
29
self.stop = False
30
0 commit comments