##// END OF EJS Templates
ui: use absolute_import...
Gregory Szorc -
r25989:2cc4e838 default
parent child Browse files
Show More
@@ -5,11 +5,28 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 from __future__ import absolute_import
9
10 import errno
11 import getpass
8 12 import inspect
9 from i18n import _
10 import errno, getpass, os, socket, sys, tempfile, traceback
11 import config, scmutil, util, error, formatter, progress
12 from node import hex
13 import os
14 import socket
15 import sys
16 import tempfile
17 import traceback
18
19 from .i18n import _
20 from .node import hex
21
22 from . import (
23 config,
24 error,
25 formatter,
26 progress,
27 scmutil,
28 util,
29 )
13 30
14 31 samplehgrcs = {
15 32 'user':
@@ -112,8 +112,5 b' hidden by deduplication algorithm in the'
112 112 these may expose other cycles.
113 113
114 114 $ hg locate 'mercurial/**.py' 'hgext/**.py' | sed 's-\\-/-g' | python "$import_checker" -
115 mercurial/ui.py mixed imports
116 stdlib: formatter
117 relative: config, error, progress, scmutil, util
118 115 Import cycle: hgext.largefiles.basestore -> hgext.largefiles.localstore -> hgext.largefiles.basestore
119 116 [1]
General Comments 0
You need to be logged in to leave comments. Login now