Changes in / [9c461c7:790bcc4c] in sasmodels
- Location:
- sasmodels
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/compare_many.py
ra7f909a r6458608 164 164 model = sys.argv[1] 165 165 if not (model in MODELS) and (model != "all"): 166 print('Bad model %s. Use "all" or one of:' )166 print('Bad model %s. Use "all" or one of:'%model) 167 167 print_models() 168 168 sys.exit(1) -
sasmodels/convert.py
r30b4ddf r6458608 75 75 for new, old in mapping.items(): 76 76 for pd, dot in PD_DOT: 77 if old +pd == new+dot:77 if old and old+pd == new+dot: 78 78 continue 79 79 if new+pd in newpars:
Note: See TracChangeset
for help on using the changeset viewer.