Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.1, 0.8.2, and 0.8.3

gdialog: catch IOErrors in hg call wrapper

Fixes #349

Changeset 85ad42406750

Parent 5cbaae3049dc

by Steve Borho

Changes to one file · Browse files at 85ad42406750 Showing diff from parent 5cbaae3049dc Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​gdialog.py Stacked
 
379
380
381
382
 
383
384
385
 
379
380
381
 
382
383
384
385
@@ -379,7 +379,7 @@
  self.ui.pushbuffer()   try:   command() - except util.Abort, inst: + except (util.Abort, IOError, OSError), inst:   Prompt(title + _(' Aborted'), str(inst), self).run()   return False, ''   finally: