Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

guess: drop unused arguments

Changeset fc3899aca040

Parent 35ceab86e8f5

by Yuki KODAMA

Changes to one file · Browse files at fc3899aca040 Showing diff from parent 35ceab86e8f5 Diff from another changeset...

 
215
216
217
218
 
219
220
221
 
226
227
228
229
230
 
231
232
233
234
 
235
236
237
 
268
269
270
271
272
 
273
274
275
276
277
278
 
279
280
281
 
215
216
217
 
218
219
220
221
 
226
227
228
 
 
229
230
231
232
 
233
234
235
236
 
267
268
269
 
 
270
271
272
273
274
275
 
276
277
278
279
@@ -215,7 +215,7 @@
    self.unktree.get_selection().connect('changed', self.unknown_sel_change)   self.cantree.connect('row-activated', lambda b: self.accept_match()) - self.cantree.get_selection().connect('changed', self.show_diff, self.buf) + self.cantree.get_selection().connect('changed', self.show_diff)   self.connect('delete-event', lambda *a: self.save_settings())   gobject.idle_add(self.refresh)   @@ -226,12 +226,11 @@
  q = Queue.Queue()   unkmodel = self.unktree.get_model()   unkmodel.clear() - thread = thread2.Thread(target=self.unknown_thread, - args=(self.repo.root, q)) + thread = thread2.Thread(target=self.unknown_thread, args=(q,))   thread.start()   gobject.timeout_add(50, self.unknown_wait, thread, q)   - def unknown_thread(self, root, q): + def unknown_thread(self, q):   hglib.invalidaterepo(self.repo)   matcher = match.always(self.repo.root, self.repo.root)   status = self.repo.status(node1=self.repo.dirstate.parents()[0], @@ -268,14 +267,13 @@
  return   tgts = [ umodel[p][0] for p in upaths ]   q = Queue.Queue() - thread = thread2.Thread(target=self.search_thread, - args=(self.repo.root, q, tgts)) + thread = thread2.Thread(target=self.search_thread, args=(q, tgts))   thread.start()   self.stbar.begin()   self.stbar.set_status_text(_('finding source of ') + ', '.join(tgts))   gobject.timeout_add(50, self.search_wait, thread, q)   - def search_thread(self, root, q, tgts): + def search_thread(self, q, tgts):   hglib.invalidaterepo(self.repo)   srcs = []   audit_path = util.path_auditor(self.repo.root)