Changeset 1554 for trunk/GSASIIpath.py
- Timestamp:
- Nov 1, 2014 6:21:19 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpath.py
r1553 r1554 215 215 out,err = s.communicate() 216 216 if err: 217 print ' out=',out217 print 'svn failed, retry w/o --trust...\nout=',out 218 218 print 'err=',err 219 219 s = subprocess.Popen(cmd, … … 244 244 svn = whichsvn() 245 245 if not svn: return 246 s = subprocess.Popen([svn,'status',fpath,'--xml'], 246 cmd = [svn,'status',fpath,'--xml'] 247 s = subprocess.Popen(cmd, 247 248 stdout=subprocess.PIPE,stderr=subprocess.PIPE) 248 249 out,err = s.communicate()
Note: See TracChangeset
for help on using the changeset viewer.