##// END OF EJS Templates
debugshell: use absolute_import
Pulkit Goyal -
r28476:e28dc6de default
parent child Browse files
Show More
@@ -1,9 +1,10 b''
1 1 # debugshell extension
2 2 """a python shell with repo, changelog & manifest objects"""
3 3
4 import sys
4 from __future__ import absolute_import
5 import code
5 6 import mercurial
6 import code
7 import sys
7 8 from mercurial import (
8 9 cmdutil,
9 10 demandimport,
@@ -5,7 +5,6 b''
5 5 $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py
6 6 contrib/check-code.py not using absolute_import
7 7 contrib/check-code.py requires print_function
8 contrib/debugshell.py not using absolute_import
9 8 contrib/import-checker.py not using absolute_import
10 9 contrib/import-checker.py requires print_function
11 10 contrib/memory.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now