comparison contrib/debugshell.py @ 28476:e28dc6de38e7

debugshell: use absolute_import
author Pulkit Goyal <7895pulkit@gmail.com>
date Sun, 06 Mar 2016 03:19:08 +0530
parents e4b512bb6386
children 844f72885fb9
comparison
equal deleted inserted replaced
28475:ae522fb493d4 28476:e28dc6de38e7
1 # debugshell extension 1 # debugshell extension
2 """a python shell with repo, changelog & manifest objects""" 2 """a python shell with repo, changelog & manifest objects"""
3 3
4 from __future__ import absolute_import
5 import code
6 import mercurial
4 import sys 7 import sys
5 import mercurial
6 import code
7 from mercurial import ( 8 from mercurial import (
8 cmdutil, 9 cmdutil,
9 demandimport, 10 demandimport,
10 ) 11 )
11 12