Mercurial > public > mercurial-scm > hg
diff 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 |
line wrap: on
line diff
--- a/hgext/eol.py Sun Apr 17 00:53:56 2016 +0530 +++ b/hgext/eol.py Sun Apr 17 02:10:55 2016 +0530 @@ -91,9 +91,18 @@ 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