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