##// END OF EJS Templates
transplant: use absolute_import
timeless -
r28481:ec75c942 default
parent child Browse files
Show More
@@ -13,13 +13,28 b' possibly in another repository. The tran'
13 13 Transplanted patches are recorded in .hg/transplant/transplants, as a
14 14 map from a changeset hash to its hash in the source repository.
15 15 '''
16 from __future__ import absolute_import
16 17
18 import os
19 import tempfile
17 20 from mercurial.i18n import _
18 import os, tempfile
19 from mercurial import node as nodemod
20 from mercurial import bundlerepo, hg, merge, match
21 from mercurial import patch, revlog, scmutil, util, error, cmdutil
22 from mercurial import registrar, revset, templatekw, exchange
21 from mercurial import (
22 bundlerepo,
23 cmdutil,
24 error,
25 exchange,
26 hg,
27 match,
28 merge,
29 node as nodemod,
30 patch,
31 registrar,
32 revlog,
33 revset,
34 scmutil,
35 templatekw,
36 util,
37 )
23 38
24 39 class TransplantError(error.Abort):
25 40 pass
@@ -48,7 +48,6 b''
48 48 hgext/mq.py not using absolute_import
49 49 hgext/rebase.py not using absolute_import
50 50 hgext/share.py not using absolute_import
51 hgext/transplant.py not using absolute_import
52 51 hgext/win32text.py not using absolute_import
53 52 i18n/check-translation.py not using absolute_import
54 53 i18n/polib.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now