comparison hgext/eol.py @ 28969:cca011fd1ea7

py3: make eol use absolute_import
author Pulkit Goyal <7895pulkit@gmail.com>
date Sun, 17 Apr 2016 02:10:55 +0530
parents f5b6b4e574c1
children d5883fd055c6
comparison
equal deleted inserted replaced
28968:a5d449a7bc8f 28969:cca011fd1ea7
89 89
90 See :hg:`help patterns` for more information about the glob patterns 90 See :hg:`help patterns` for more information about the glob patterns
91 used. 91 used.
92 """ 92 """
93 93
94 from __future__ import absolute_import
95
96 import os
97 import re
94 from mercurial.i18n import _ 98 from mercurial.i18n import _
95 from mercurial import util, config, extensions, match, error 99 from mercurial import (
96 import re, os 100 config,
101 error,
102 extensions,
103 match,
104 util,
105 )
97 106
98 # Note for extension authors: ONLY specify testedwith = 'internal' for 107 # Note for extension authors: ONLY specify testedwith = 'internal' for
99 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 108 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
100 # be specifying the version(s) of Mercurial they are tested with, or 109 # be specifying the version(s) of Mercurial they are tested with, or
101 # leave the attribute unspecified. 110 # leave the attribute unspecified.