Skip to content
Snippets Groups Projects
Commit e2cb9e05 authored by Antoine Merle's avatar Antoine Merle
Browse files

Remove error when checking for "No data."

git-svn-id: https://spcsvn.epfl.ch/repos/TCV/gdat/trunk@7597 d63d8f72-b253-0410-a779-e742ad2e26cf
parent 093b9e73
Branches
Tags
No related merge requests found
......@@ -328,7 +328,7 @@ if strcmp(mapping_for_tcv.method(1:3),'tdi')
end
aatmp=eval(eval_expr);
end
if isempty(aatmp.data) || (isempty(aatmp.dim) && ischar(aatmp.data) && findstr(lower(aatmp.data),'no data'))% || ischar(aatmp.data) (to add?)
if isempty(aatmp.data) || (isempty(aatmp.dim) && ischar(aatmp.data) && ~isempty(strfind(lower(aatmp.data),'no data')))% || ischar(aatmp.data) (to add?)
if (gdat_params.nverbose>=1); warning(['problems loading data for ' eval_expr ' for data_request= ' data_request_eff]); end
if (gdat_params.nverbose>=3); disp('check .gdat_request list'); end
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment