Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

hggtk/synch: fix variable name typo

Changeset 4190670203ef

Parent f40e8e960740

by TK Soh

Changes to one file · Browse files at 4190670203ef Showing diff from parent f40e8e960740 Diff from another changeset...

Change 1 of 3 Show Entire File hggtk/​synch.py Stacked
 
101
102
103
104
105
 
 
106
107
108
 
114
115
116
117
 
118
119
120
 
349
350
351
352
 
353
354
 
355
356
357
 
101
102
103
 
 
104
105
106
107
108
 
114
115
116
 
117
118
119
120
 
349
350
351
 
352
353
 
354
355
356
357
@@ -101,8 +101,8 @@
  lbl.connect('clicked', self._btn_remotepath_clicked)     # revisions combo box - self.revlist = gtk.ListStore(str) - self._pathbox = gtk.ComboBoxEntry(self.revlist, 0) + self.pathlist = gtk.ListStore(str) + self._pathbox = gtk.ComboBoxEntry(self.pathlist, 0)   self._pathtext = self._pathbox.get_child()     defrow = None @@ -114,7 +114,7 @@
  defpushrow = row   elif name == 'default-push':   defpushrow = row - self.revlist.append([path]) + self.pathlist.append([path])     if repos:   self._pathtext.set_text(repos[0]) @@ -349,9 +349,9 @@
  dlg.run()   dlg.hide()   self.paths = self._get_paths() - self.revlist.clear() + self.pathlist.clear()   for row, (name, path) in enumerate(self.paths): - self.revlist.append([path]) + self.pathlist.append([path])     def _email_clicked(self, toolbutton, data=None):   path = self._pathtext.get_text()