Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.1, 2.1.2, and tip

stable sync: move import of paths to top of the file (fixes #853)

Changeset c366991c4330

Parent 68c9b78ad92e

by Steve Borho

Changes to one file · Browse files at c366991c4330 Showing diff from parent 68c9b78ad92e Diff from another changeset...

 
17
18
19
20
 
21
22
23
 
1487
1488
1489
1490
1491
1492
 
17
18
19
 
20
21
22
23
 
1487
1488
1489
 
1490
1491
@@ -17,7 +17,7 @@
 from mercurial import hg, ui, url, util, error, demandimport  from mercurial import merge as mergemod   -from tortoisehg.util import hglib, wconfig +from tortoisehg.util import hglib, wconfig, paths  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import qtlib, cmdui, thgrepo, rebase, resolve, hgrcutil   @@ -1487,6 +1487,5 @@
     def run(ui, *pats, **opts): - from tortoisehg.util import paths   repo = thgrepo.repository(ui, path=paths.find_root())   return SyncWidget(repo, None, **opts)