comparison hgext/pager.py @ 28320:63c2864af25f

pager: use absolute_import
author Augie Fackler <augie@google.com>
date Sun, 28 Feb 2016 22:15:00 -0500
parents efceacd6a0c6
children fa3438548b3d
comparison
equal deleted inserted replaced
28319:09222d39fa34 28320:63c2864af25f
56 - require the pager: `yes` or `on`. 56 - require the pager: `yes` or `on`.
57 - suppress the pager: `no` or `off` (any unrecognized value 57 - suppress the pager: `no` or `off` (any unrecognized value
58 will also work). 58 will also work).
59 59
60 ''' 60 '''
61 from __future__ import absolute_import
61 62
62 import atexit, sys, os, signal, subprocess 63 import atexit
63 from mercurial import commands, dispatch, util, extensions, cmdutil 64 import os
65 import signal
66 import subprocess
67 import sys
68
69 from mercurial import (
70 cmdutil,
71 commands,
72 dispatch,
73 extensions,
74 util,
75 )
64 from mercurial.i18n import _ 76 from mercurial.i18n import _
65 77
66 # Note for extension authors: ONLY specify testedwith = 'internal' for 78 # Note for extension authors: ONLY specify testedwith = 'internal' for
67 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 79 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
68 # be specifying the version(s) of Mercurial they are tested with, or 80 # be specifying the version(s) of Mercurial they are tested with, or