Skip to content

Commit

Permalink
Fix minor erroneous output bug in check_input_data
Browse files Browse the repository at this point in the history
File would be reported missing and then reported as already being had
  • Loading branch information
jgfouca committed Jul 29, 2016
1 parent 929f05a commit b18580b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions utils/python/CIME/check_input_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,10 @@ def check_input_data(case, svn_loc=None, input_data_root=None, data_list_dir="Bu
no_files_missing = False
else:
no_files_missing = False
else:
logging.info("Already had input file: '%s'" % full_path)

else:
logging.info("Already had input file: '%s'" % full_path)

else:
model = os.path.basename(data_list_file).split('.')[0]
logging.warning("Model %s no file specified for %s"%(model,description))
Expand Down

0 comments on commit b18580b

Please sign in to comment.