Don't create directory structure during json dump. Fixes #2270

This commit is contained in:
ziajka
2017-10-02 10:41:57 +02:00
parent 2a4ed9ba89
commit 3d85bba9d4
10 changed files with 35 additions and 8 deletions

View File

@ -233,6 +233,14 @@ class BaseNode:
return self._project.node_working_directory(self)
@property
def working_path(self):
"""
Return the node working path. Doesn't create structure of directories when not present.
"""
return self._project.node_working_path(self)
@property
def temporary_directory(self):
if self._temporary_directory is None: