##// END OF EJS Templates
py3: use absolute_import in svnxml.py
Robert Stanca -
r28947:812eb3b7 default
parent child Browse files
Show More
@@ -1,7 +1,9 b''
1 # Read the output of a "svn log --xml" command on stdin, parse it and
1 # Read the output of a "svn log --xml" command on stdin, parse it and
2 # print a subset of attributes common to all svn versions tested by
2 # print a subset of attributes common to all svn versions tested by
3 # hg.
3 # hg.
4 import xml.dom.minidom, sys
4 from __future__ import absolute_import
5 import sys
6 import xml.dom.minidom
5
7
6 def xmltext(e):
8 def xmltext(e):
7 return ''.join(c.data for c
9 return ''.join(c.data for c
@@ -46,7 +46,6 b''
46 tests/readlink.py requires print_function
46 tests/readlink.py requires print_function
47 tests/run-tests.py not using absolute_import
47 tests/run-tests.py not using absolute_import
48 tests/svn-safe-append.py not using absolute_import
48 tests/svn-safe-append.py not using absolute_import
49 tests/svnxml.py not using absolute_import
50 tests/test-atomictempfile.py not using absolute_import
49 tests/test-atomictempfile.py not using absolute_import
51 tests/test-demandimport.py not using absolute_import
50 tests/test-demandimport.py not using absolute_import
52 tests/test-demandimport.py requires print_function
51 tests/test-demandimport.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now