diff -r 09222d39fa34 -r 63c2864af25f hgext/pager.py --- a/hgext/pager.py Sun Feb 28 22:13:47 2016 -0500 +++ b/hgext/pager.py Sun Feb 28 22:15:00 2016 -0500 @@ -58,9 +58,21 @@ will also work). ''' +from __future__ import absolute_import -import atexit, sys, os, signal, subprocess -from mercurial import commands, dispatch, util, extensions, cmdutil +import atexit +import os +import signal +import subprocess +import sys + +from mercurial import ( + cmdutil, + commands, + dispatch, + extensions, + util, + ) from mercurial.i18n import _ # Note for extension authors: ONLY specify testedwith = 'internal' for