Changes in / [f10bc52:2352350] in sasmodels


Ignore:
Location:
example
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • example/fit_sesans.py

    r84db7a5 rbdb653c  
    11import shlex, subprocess, sys 
     2import platform 
    23args = shlex.split("sesansfit.sh blah --edit") 
    34args[1] = sys.argv[1] 
    4 subprocess.Popen(args, shell="True") 
     5if platform.system() != "Windows": 
     6    args = ["sh"] + args 
     7    shellFlag = False 
     8else: 
     9    shellFlag = True 
     10subprocess.Popen(args, shell=shellFlag) 
  • example/sesansfit.sh

    r15bd6e7 rbdb653c  
    88set -x 
    99 
    10 pythonw -m bumps.cli $* 
     10python -m bumps.cli $* 
Note: See TracChangeset for help on using the changeset viewer.