Changeset 3513


Ignore:
Timestamp:
Jul 27, 2018 5:23:54 PM (5 years ago)
Author:
svnjenkins
Message:

more svn diagnostics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpath.py

    r3438 r3513  
    230230        print ('subversion error!\nout=%s'%out)
    231231        print ('err=%s'%err)
     232        s = '\nsvn command:  '
     233        for i in cmd: s += i + ' '
     234        print(s)
    232235        return None
    233236    return out.strip()
     
    272275        print ('out=%s'%out)
    273276        print ('err=%s'%err)
     277        s = '\nsvn command:  '
     278        for i in cmd: s += i + ' '
     279        print(s)
    274280        return None
    275281    x = ET.fromstring(out)
     
    314320        print ('svn failed\n%s'%out)
    315321        print ('err=%s'%err)
     322        s = '\nsvn command:  '
     323        for i in cmd: s += i + ' '
     324        print(s)
    316325        global svnLastError
    317326        svnLastError = err
     
    383392        print(60*"=")
    384393        print(err)
     394        s = '\nsvn command:  '
     395        for i in cmd: s += i + ' '
     396        print(s)
    385397        sys.exit()
    386398    elif verbose:
     
    403415        print("svn upgrade did not happen (this is probably OK). Messages:")
    404416        print (err)
     417        s = '\nsvn command:  '
     418        for i in cmd: s += i + ' '
     419        print(s)
    405420
    406421def svnUpdateProcess(version=None,projectfile=None,branch=None):
     
    457472        print ('out=%s'%out)
    458473        print ('err=%s'%err)
     474        s = '\nsvn command:  '
     475        for i in cmd: s += i + ' '
     476        print(s)
    459477        return False
    460478    if verbose:
     
    484502        print(60*"=")
    485503        print (err)
     504        s = '\nsvn command:  '
     505        for i in cmd: s += i + ' '
     506        print(s)
     507
    486508        return False
    487509    print ("Files installed at: "+loadpath)
Note: See TracChangeset for help on using the changeset viewer.