Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

thgshelve: make unshelve operation quiet

Changeset b6d25fb0822c

Parent 99cd59c911ff

by Steve Borho

Changes to one file · Browse files at b6d25fb0822c Showing diff from parent 99cd59c911ff Diff from another changeset...

 
186
187
188
 
189
 
190
191
192
 
186
187
188
189
190
191
192
193
194
@@ -186,7 +186,9 @@
  opts = {'addremove': None, 'include': [], 'force': None,   'append': None, 'exclude': [], 'inspect': None}   try: + self.ui.quiet = True   hgshelve.unshelve(self.ui, self.repo, **opts) + self.ui.quiet = False   self.reload_status()   except:   pass