Changeset 3513
- Timestamp:
- Jul 27, 2018 5:23:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpath.py
r3438 r3513 230 230 print ('subversion error!\nout=%s'%out) 231 231 print ('err=%s'%err) 232 s = '\nsvn command: ' 233 for i in cmd: s += i + ' ' 234 print(s) 232 235 return None 233 236 return out.strip() … … 272 275 print ('out=%s'%out) 273 276 print ('err=%s'%err) 277 s = '\nsvn command: ' 278 for i in cmd: s += i + ' ' 279 print(s) 274 280 return None 275 281 x = ET.fromstring(out) … … 314 320 print ('svn failed\n%s'%out) 315 321 print ('err=%s'%err) 322 s = '\nsvn command: ' 323 for i in cmd: s += i + ' ' 324 print(s) 316 325 global svnLastError 317 326 svnLastError = err … … 383 392 print(60*"=") 384 393 print(err) 394 s = '\nsvn command: ' 395 for i in cmd: s += i + ' ' 396 print(s) 385 397 sys.exit() 386 398 elif verbose: … … 403 415 print("svn upgrade did not happen (this is probably OK). Messages:") 404 416 print (err) 417 s = '\nsvn command: ' 418 for i in cmd: s += i + ' ' 419 print(s) 405 420 406 421 def svnUpdateProcess(version=None,projectfile=None,branch=None): … … 457 472 print ('out=%s'%out) 458 473 print ('err=%s'%err) 474 s = '\nsvn command: ' 475 for i in cmd: s += i + ' ' 476 print(s) 459 477 return False 460 478 if verbose: … … 484 502 print(60*"=") 485 503 print (err) 504 s = '\nsvn command: ' 505 for i in cmd: s += i + ' ' 506 print(s) 507 486 508 return False 487 509 print ("Files installed at: "+loadpath)
Note: See TracChangeset
for help on using the changeset viewer.