daemon: refactored node.nodedir to node.directory

This commit is contained in:
Blake Harnden 2021-03-19 17:01:22 -07:00
parent a2148c6923
commit be0e0175a2
8 changed files with 27 additions and 27 deletions

View file

@ -93,7 +93,7 @@ def create_node_file(
:return:
"""
if isinstance(node, CoreNode):
file_path = node.nodedir / file_name
file_path = node.directory / file_name
else:
file_path = node.session.directory / file_name
create_file(xml_element, doc_name, file_path, node.server)