Mercurial > hg
changeset 28461:b433233e25d9
convert: fix "stdlib import follows local import" problem in transport
Before this patch, import-checker reports error below for importing
subversion python binding libraries.
stdlib import "svn.*" follows local import: mercurial
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Fri, 11 Mar 2016 21:55:44 +0900 |
parents | d6dbb0968c13 |
children | dbba18ba26d4 |
files | hgext/convert/transport.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/transport.py Fri Mar 11 21:55:44 2016 +0900 +++ b/hgext/convert/transport.py Fri Mar 11 21:55:44 2016 +0900 @@ -18,10 +18,6 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. from __future__ import absolute_import -from mercurial import ( - util, -) - import svn.client import svn.core import svn.ra @@ -29,6 +25,10 @@ Pool = svn.core.Pool SubversionException = svn.core.SubversionException +from mercurial import ( + util, +) + # Some older versions of the Python bindings need to be # explicitly initialized. But what we want to do probably # won't work worth a darn against those libraries anyway!