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

diffs: pychecker found an undefined exception

This dates back to the initial import from bzr. Can this file go away?

Changeset 10500b908cea

Parent 4e6dc1ec3312

by Steve Borho

Changes to one file · Browse files at 10500b908cea Showing diff from parent 4e6dc1ec3312 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​diff.py Stacked
 
17
18
19
 
 
 
 
20
21
22
 
17
18
19
20
21
22
23
24
25
26
@@ -17,6 +17,10 @@
 from mercurial.i18n import _  from shlib import set_tortoise_icon   +class NoSuchFile(Exception): + def __init__(self, filename): + self.filename = filename +  class DiffWindow(gtk.Window):   """Diff window.