Skip to content
Snippets Groups Projects
Commit f4ebd5c4 authored by Federico Felici's avatar Federico Felici
Browse files

Re-fix error handling

parent b7e98a70
No related branches found
No related tags found
No related merge requests found
......@@ -477,7 +477,7 @@ classdef SCDclass_algo
if ~ismember(refdd{:},dictionaryObj.DataSources)
fprintf('adding referenced data dictionary %s to %s \n',refdd{:},obj.getdatadictionary)
refddpath = which(refdd{:});
assert(~isempty(refddpath),'could not find %s',refpath);
assert(~isempty(refddpath),'could not find %s',refdd{:});
dictionaryObj.addDataSource(refdd{:});
dosave = true;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment