##// 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 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
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 import inspect
12 import inspect
9 from i18n import _
13 import os
10 import errno, getpass, os, socket, sys, tempfile, traceback
14 import socket
11 import config, scmutil, util, error, formatter, progress
15 import sys
12 from node import hex
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 samplehgrcs = {
31 samplehgrcs = {
15 'user':
32 'user':
@@ -112,8 +112,5 b' hidden by deduplication algorithm in the'
112 these may expose other cycles.
112 these may expose other cycles.
113
113
114 $ hg locate 'mercurial/**.py' 'hgext/**.py' | sed 's-\\-/-g' | python "$import_checker" -
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 Import cycle: hgext.largefiles.basestore -> hgext.largefiles.localstore -> hgext.largefiles.basestore
115 Import cycle: hgext.largefiles.basestore -> hgext.largefiles.localstore -> hgext.largefiles.basestore
119 [1]
116 [1]
General Comments 0
You need to be logged in to leave comments. Login now