diff --git a/pyccx/analysis/analysis.py b/pyccx/analysis/analysis.py index 383404d..37b622b 100644 --- a/pyccx/analysis/analysis.py +++ b/pyccx/analysis/analysis.py @@ -497,7 +497,7 @@ def results(self) -> ResultProcessor: The results obtained after running an analysis """ if self.isAnalysisCompleted(): - return ResultProcessor('input') + return ResultProcessor(os.path.join(self._workingDirectory, 'input')) else: raise ValueError('Results were not available')