Ignore:
Timestamp:
Feb 3, 2019 5:05:41 PM (4 years ago)
Author:
toby
Message:

fix range object in GPX file; fix spurious warning on tutorial update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIctrlGUI.py

    r3795 r3810  
    54595459        'Find the downloaded tutorials and run an svn update on them'
    54605460        updated = 0
     5461        wx.BeginBusyCursor()
    54615462        for i in tutorialCatalog:
    54625463            if not os.path.exists(os.path.join(self.tutorialPath,i[0],i[1])): continue
    54635464            print('Updating '+i[0])
    54645465            GSASIIpath.svnUpdateDir(os.path.join(self.tutorialPath,i[0]))
    5465             updated += 0
     5466            updated += 1
     5467        wx.EndBusyCursor()
    54665468        if not updated:
    54675469            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)
    54695473       
    54705474    def DownloadAll(self,event):
Note: See TracChangeset for help on using the changeset viewer.