Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

visdiff: Use more generic OSError

Backs off change a5470ed89cf9 and replaces WindowsError with OSError

Changeset d8330c535c22

Parent d22bb5a76694

by Steve Borho

Changes to one file · Browse files at d8330c535c22 Showing diff from parent d22bb5a76694 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​visdiff.py Stacked
 
238
239
240
241
 
242
243
244
 
238
239
240
 
241
242
243
244
@@ -238,7 +238,7 @@
  stderr=subprocess.PIPE,   stdout=subprocess.PIPE,   stdin=subprocess.PIPE) - except Exception, e: + except (OSError, EnvironmentError), e:   gdialog.Prompt(_('Tool launch failure'),   _('%s : %s') % (self.diffpath, str(e)), None).run()