##// END OF EJS Templates
convert: transport use absolute_import
timeless -
r28412:1e03b741 default
parent child Browse files
Show More
@@ -16,12 +16,18 b''
16
16
17 # You should have received a copy of the GNU General Public License
17 # You should have received a copy of the GNU General Public License
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
20
20 from mercurial import util
21 from mercurial import (
21 from svn.core import SubversionException, Pool
22 util,
22 import svn.ra
23 )
24
23 import svn.client
25 import svn.client
24 import svn.core
26 import svn.core
27 import svn.ra
28
29 Pool = svn.core.Pool
30 SubversionException = svn.core.SubversionException
25
31
26 # Some older versions of the Python bindings need to be
32 # Some older versions of the Python bindings need to be
27 # explicitly initialized. But what we want to do probably
33 # explicitly initialized. But what we want to do probably
@@ -23,7 +23,6 b''
23 hgext/color.py not using absolute_import
23 hgext/color.py not using absolute_import
24 hgext/convert/__init__.py not using absolute_import
24 hgext/convert/__init__.py not using absolute_import
25 hgext/convert/cvs.py not using absolute_import
25 hgext/convert/cvs.py not using absolute_import
26 hgext/convert/transport.py not using absolute_import
27 hgext/eol.py not using absolute_import
26 hgext/eol.py not using absolute_import
28 hgext/extdiff.py not using absolute_import
27 hgext/extdiff.py not using absolute_import
29 hgext/factotum.py not using absolute_import
28 hgext/factotum.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now