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

logfilter: string cleanups

Changeset 684a87d1b0e2

Parent 0a992aa33173

by Steve Borho

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

 
16
17
18
19
 
20
21
22
23
24
 
29
30
31
32
 
33
34
35
 
16
17
18
 
19
20
 
21
22
23
 
28
29
30
 
31
32
33
34
@@ -16,9 +16,8 @@
 from hggtk import gtklib, gdialog, hgcmd    class FilterDialog(gtk.Dialog): - """ Dialog for creating log filters """ + 'Dialog for creating log filters'   def __init__(self, root='', revs=[], files=[], filterfunc=None): - """ Initialize the Dialog """   buttons = (gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)   super(FilterDialog, self).__init__(flags=gtk.DIALOG_MODAL,   buttons=buttons) @@ -29,7 +28,7 @@
  self._btn_apply.connect('clicked', self._btn_apply_clicked)   self.action_area.pack_end(self._btn_apply)   - self.set_title(_("Log Filter - %s") % os.path.basename(root)) + self.set_title(_('Log Filter - %s') % os.path.basename(root))     self.filterfunc = filterfunc