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

logfilter: properly destroy self if repo not found

Changeset 0a992aa33173

Parent f5655881caa0

by Steve Borho

Changes to one file · Browse files at 0a992aa33173 Showing diff from parent f5655881caa0 Diff from another changeset...

 
6
7
8
 
9
10
11
 
35
36
37
38
 
39
40
41
 
6
7
8
9
10
11
12
 
36
37
38
 
39
40
41
42
@@ -6,6 +6,7 @@
   import os  import gtk +import gobject    from mercurial import cmdutil, util, hg, ui   @@ -35,7 +36,7 @@
  try:   self.repo = hg.repository(ui.ui(), path=root)   except hglib.RepoError: - return None + gobject.idle_add(self.destroy)     self.set_default_size(350, 120)