##// END OF EJS Templates
convert: fix "stdlib import follows local import" problem in transport...
FUJIWARA Katsunori -
r28461:b433233e default
parent child Browse files
Show More
@@ -18,10 +18,6 b''
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
19 from __future__ import absolute_import
19 from __future__ import absolute_import
20
20
21 from mercurial import (
22 util,
23 )
24
25 import svn.client
21 import svn.client
26 import svn.core
22 import svn.core
27 import svn.ra
23 import svn.ra
@@ -29,6 +25,10 b' import svn.ra'
29 Pool = svn.core.Pool
25 Pool = svn.core.Pool
30 SubversionException = svn.core.SubversionException
26 SubversionException = svn.core.SubversionException
31
27
28 from mercurial import (
29 util,
30 )
31
32 # Some older versions of the Python bindings need to be
32 # Some older versions of the Python bindings need to be
33 # explicitly initialized. But what we want to do probably
33 # explicitly initialized. But what we want to do probably
34 # won't work worth a darn against those libraries anyway!
34 # won't work worth a darn against those libraries anyway!
General Comments 0
You need to be logged in to leave comments. Login now