Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

repomodel: remove imports of tortoisehg.util.util

Changeset f2ad989df68e

Parent d7e163b8afac

by Steve Borho

Changes to one file · Browse files at f2ad989df68e Showing diff from parent d7e163b8afac Diff from another changeset...

 
16
17
18
19
20
 
21
22
23
 
171
172
173
174
 
175
176
177
 
16
17
18
 
 
19
20
21
22
 
170
171
172
 
173
174
175
176
@@ -16,8 +16,7 @@
   from mercurial import util, error, templatefilters   -from tortoisehg.util.util import tounicode, Curry - +from tortoisehg.util.hglib import tounicode  from tortoisehg.hgqt.graph import Graph  from tortoisehg.hgqt.graph import revision_grapher  from tortoisehg.hgqt.qtlib import geticon @@ -171,7 +170,7 @@
  self.emit(SIGNAL('layoutChanged()'))   self.heads = [self.repo.changectx(x).rev() for x in self.repo.heads()]   self.ensureBuilt(row=self.fill_step) - QTimer.singleShot(0, Curry(self.emit, SIGNAL('filled'))) + QTimer.singleShot(0, lambda: self.emit(SIGNAL('filled')))   self.timerHandle = self.startTimer(50)     def branch(self):