Changeset 1554 for trunk/GSASIIpath.py


Ignore:
Timestamp:
Nov 1, 2014 6:21:19 PM (8 years ago)
Author:
toby
Message:

testing svn -trust changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpath.py

    r1553 r1554  
    215215    out,err = s.communicate()
    216216    if err:
    217         print 'out=',out
     217        print 'svn failed, retry w/o --trust...\nout=',out
    218218        print 'err=',err
    219219        s = subprocess.Popen(cmd,
     
    244244    svn = whichsvn()
    245245    if not svn: return
    246     s = subprocess.Popen([svn,'status',fpath,'--xml'],
     246    cmd = [svn,'status',fpath,'--xml']
     247    s = subprocess.Popen(cmd,
    247248                         stdout=subprocess.PIPE,stderr=subprocess.PIPE)
    248249    out,err = s.communicate()
Note: See TracChangeset for help on using the changeset viewer.