Changeset 3810 for trunk/GSASIIctrlGUI.py
- Timestamp:
- Feb 3, 2019 5:05:41 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3795 r3810 5459 5459 'Find the downloaded tutorials and run an svn update on them' 5460 5460 updated = 0 5461 wx.BeginBusyCursor() 5461 5462 for i in tutorialCatalog: 5462 5463 if not os.path.exists(os.path.join(self.tutorialPath,i[0],i[1])): continue 5463 5464 print('Updating '+i[0]) 5464 5465 GSASIIpath.svnUpdateDir(os.path.join(self.tutorialPath,i[0])) 5465 updated += 0 5466 updated += 1 5467 wx.EndBusyCursor() 5466 5468 if not updated: 5467 5469 G2MessageBox(self,'Warning, you have no downloaded tutorials','None Downloaded') 5468 self.EndModal(wx.ID_OK) 5470 else: 5471 G2MessageBox(self,'{} updates completed'.format(updated),'Updates done') 5472 #self.EndModal(wx.ID_OK) 5469 5473 5470 5474 def DownloadAll(self,event):
Note: See TracChangeset
for help on using the changeset viewer.