##// END OF EJS Templates
crecord: fix mixed imports warning
Matt Harbison -
r24909:d71492ca default
parent child Browse files
Show More
@@ -20,7 +20,8 b" locale.setlocale(locale.LC_ALL, '')"
20
20
21 # os.name is one of: 'posix', 'nt', 'dos', 'os2', 'mac', or 'ce'
21 # os.name is one of: 'posix', 'nt', 'dos', 'os2', 'mac', or 'ce'
22 if os.name == 'posix':
22 if os.name == 'posix':
23 import curses, fcntl, termios
23 import curses
24 import fcntl, termios
24 else:
25 else:
25 # I have no idea if wcurses works with crecord...
26 # I have no idea if wcurses works with crecord...
26 try:
27 try:
@@ -21,9 +21,6 b' hidden by deduplication algorithm in the'
21 these may expose other cycles.
21 these may expose other cycles.
22
22
23 $ hg locate 'mercurial/**.py' | sed 's-\\-/-g' | xargs python "$import_checker"
23 $ hg locate 'mercurial/**.py' | sed 's-\\-/-g' | xargs python "$import_checker"
24 mercurial/crecord.py mixed imports
25 stdlib: fcntl, termios
26 relative: curses
27 mercurial/dispatch.py mixed imports
24 mercurial/dispatch.py mixed imports
28 stdlib: commands
25 stdlib: commands
29 relative: error, extensions, fancyopts, hg, hook, util
26 relative: error, extensions, fancyopts, hg, hook, util
General Comments 0
You need to be logged in to leave comments. Login now