##// END OF EJS Templates
run-tests: compare absolute paths in _checkhglib
Idan Kamara -
r14263:7352ff75 default
parent child Browse files
Show More
@@ -902,7 +902,7 b' def _checkhglib(verb):'
902 902 the one we expect it to be. If not, print a warning to stderr."""
903 903 expecthg = os.path.join(PYTHONDIR, 'mercurial')
904 904 actualhg = _gethgpath()
905 if actualhg != expecthg:
905 if os.path.abspath(actualhg) != os.path.abspath(expecthg):
906 906 sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n'
907 907 ' (expected %s)\n'
908 908 % (verb, actualhg, expecthg))
General Comments 0
You need to be logged in to leave comments. Login now