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

hglib: clean up import statements

Changeset f4363d3b6dde

Parent dc45de6f86d8

by Yuki KODAMA

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

 
10
11
12
13
14
15
16
17
18
19
20
 
 
21
22
23
24
 
 
25
26
27
 
10
11
12
 
 
 
 
13
14
15
 
16
17
18
19
20
21
22
23
24
25
26
@@ -10,18 +10,17 @@
 import traceback  import shlib  import time -from mercurial import hg, ui, util, extensions, commands, hook, match - -from i18n import _ -import paths    from mercurial.error import RepoError, ParseError, LookupError  from mercurial.error import UnknownCommand, AmbiguousCommand -from mercurial import dispatch, encoding, util +from mercurial import hg, ui, util, extensions, commands, hook, match +from mercurial import dispatch, encoding  _encoding = encoding.encoding  _encodingmode = encoding.encodingmode  _fallbackencoding = encoding.fallbackencoding   +from tortoisehg.util import paths +from tortoisehg.util.i18n import _  from tortoisehg.util.hgversion import hgversion    def tounicode(s):