Changeset 748 in lmdz_wrf
- Timestamp:
- May 4, 2016, 11:29:57 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var.py
r735 r748 18 18 import re 19 19 import nc_var_tools as ncvar 20 import generic_tools as gen 20 21 21 22 operations=['addvals', 'chdimname', 'changevartype', 'checkallvars', \ … … 67 68 #print string_operation 68 69 69 operationnames = "'" + ncvar.numVector_String(operations, "', '") + "'"70 operationnames = "'" + gen.numVector_String(operations, "', '") + "'" 70 71 71 72 parser = OptionParser() … … 101 102 102 103 if opts.ncfile is not None and not os.path.isfile(opts.ncfile) and \ 103 not ncvar.searchInlist(NotCheckingFile,oper):104 not gen.searchInlist(NotCheckingFile,oper): 104 105 print errormsg 105 106 print ' File ' + opts.ncfile + ' does not exist !!'
Note: See TracChangeset
for help on using the changeset viewer.