Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable shelve: make revert more quiet, refresh afterwards

Changeset 79dfe62677d6

Parent 0eb7b184bd74

by Steve Borho

Changes to one file · Browse files at 79dfe62677d6 Showing diff from parent 0eb7b184bd74 Diff from another changeset...

 
286
287
288
 
289
 
290
291
 
292
293
294
 
286
287
288
289
290
291
292
293
294
295
296
297
@@ -286,9 +286,12 @@
  _('Revert all working copy changes?')):   return   try: + self.repo.ui.quiet = True   commands.revert(self.repo.ui, self.repo, all=True) + self.repo.ui.quiet = False   except (EnvironmentError, error.Abort), e:   self.showMessage(hglib.tounicode(str(e))) + self.refreshCombos()   return   shelf = self.currentPatchA()   ushelf = hglib.tounicode(os.path.basename(shelf))