py3: make eol use absolute_import

This commit is contained in:
Pulkit Goyal 2016-04-17 02:10:55 +05:30
parent 570e0beb47
commit e8c7dbca1d
2 changed files with 11 additions and 3 deletions

View File

@ -91,9 +91,18 @@ See :hg:`help patterns` for more information about the glob patterns
used.
"""
from __future__ import absolute_import
import os
import re
from mercurial.i18n import _
from mercurial import util, config, extensions, match, error
import re, os
from mercurial import (
config,
error,
extensions,
match,
util,
)
# Note for extension authors: ONLY specify testedwith = 'internal' for
# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should

View File

@ -3,7 +3,6 @@
$ cd "$TESTDIR"/..
$ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py
hgext/eol.py not using absolute_import
hgext/extdiff.py not using absolute_import
hgext/factotum.py not using absolute_import
hgext/fetch.py not using absolute_import