daemon: refactored session.session_dir to session.directory

This commit is contained in:
Blake Harnden 2021-03-19 16:56:54 -07:00
parent 1c970bbe00
commit a2148c6923
8 changed files with 32 additions and 34 deletions

View file

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