diff --git a/casm/project/_DirectoryStructure.py b/casm/project/_DirectoryStructure.py index 20517cc..3bed136 100644 --- a/casm/project/_DirectoryStructure.py +++ b/casm/project/_DirectoryStructure.py @@ -540,16 +540,16 @@ def all_calctype_v2(self): # return self.__all_settings("ref", self.calc_settings_dir(calctype)) def all_import(self): - return self.__all_settings("import", self.__import_dir) + return self.__all_settings("import", self.path / self.__import_dir) def all_fit(self): - return self.__all_settings("fit", self.__fit_dir) + return self.__all_settings("fit", self.path / self.__fit_dir) def all_system(self): - return self.__all_settings("system", self.__system_dir) + return self.__all_settings("system", self.path / self.__system_dir) def all_plottype(self): - return self.__all_settings("plottype", self.__plot_settings_dir) + return self.__all_settings("plottype", self.path / self.__plot_settings_dir) # ** File and Directory paths **