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

datamine: safer variable names

Changeset 02947cee8a87

Parent be96f021c026

by Steve Borho

Changes to one file · Browse files at 02947cee8a87 Showing diff from parent be96f021c026 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​datamine.py Stacked
 
140
141
142
143
144
 
 
145
146
147
148
149
150
151
152
153
 
 
 
154
155
156
 
140
141
142
 
 
143
144
145
146
147
148
149
150
 
 
 
151
152
153
154
155
156
@@ -140,17 +140,17 @@
    def _cmenu_display(self, menuitem):   statopts = {'rev' : [self.currev] } - dialog = changeset.ChangeSet(self.ui, self.repo, self.cwd, [], statopts) - dialog.display() + dlg = changeset.ChangeSet(self.ui, self.repo, self.cwd, [], statopts) + dlg.display()     def _cmenu_annotate(self, menuitem):   self.add_annotate_page(self.curpath, self.currev)     def _cmenu_file_log(self, menuitem):   from hggtk import history - dialog = history.GLog(self.ui, self.repo, self.cwd, [self.repo.root], {}) - dialog.open_with_file(self.curpath) - dialog.display() + dlg = history.GLog(self.ui, self.repo, self.cwd, [self.repo.root], {}) + dlg.open_with_file(self.curpath) + dlg.display()     def _grep_button_release(self, widget, event):   if event.button == 3 and not (event.state & (gtk.gdk.SHIFT_MASK |