##// END OF EJS Templates
check-py3-compat: use an absolute path in sys.path...
av6 -
r50099:3f9125db stable
parent child Browse files
Show More
@@ -105,7 +105,7 b" if __name__ == '__main__':"
105 # specified. When running as test-check-py3-compat.t, we technically
105 # specified. When running as test-check-py3-compat.t, we technically
106 # would import the correct paths, but it's cleaner to have both cases
106 # would import the correct paths, but it's cleaner to have both cases
107 # use the same import logic.
107 # use the same import logic.
108 sys.path.insert(0, '.')
108 sys.path.insert(0, os.getcwd())
109 fn = check_compat_py3
109 fn = check_compat_py3
110
110
111 for f in sys.argv[1:]:
111 for f in sys.argv[1:]:
General Comments 0
You need to be logged in to leave comments. Login now