##// END OF EJS Templates
py3: byteify extension in test-relink.t
Matt Harbison -
r40343:43f0a37b default
parent child Browse files
Show More
@@ -11,9 +11,12 b''
11 11 > from __future__ import absolute_import, print_function
12 12 > import os
13 13 > import sys
14 > from mercurial import util
14 > from mercurial import (
15 > pycompat,
16 > util,
17 > )
15 18 > path1, path2 = sys.argv[1:3]
16 > if util.samefile(path1, path2):
19 > if util.samefile(pycompat.fsencode(path1), pycompat.fsencode(path2)):
17 20 > print('%s == %s' % (path1, path2))
18 21 > else:
19 22 > print('%s != %s' % (path1, path2))
General Comments 0
You need to be logged in to leave comments. Login now