Module: check_mk
Branch: master
Commit: a180c97eb1746b901fd7626feaee13395f2b7b55
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=a180c97eb1746b…
Author: Sven Panne <sp(a)mathias-kettner.de>
Date: Fri May 25 12:21:13 2018 +0200
Fixed another typo.
Change-Id: Ic4adc01fd42e222aa10c9fc6e38172f1cb74c66b
---
tests/testlib/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/testlib/__init__.py b/tests/testlib/__init__.py
index 2a19766..f859078 100644
--- a/tests/testlib/__init__.py
+++ b/tests/testlib/__init__.py
@@ -58,7 +58,7 @@ def var_dir():
def virtualenv_path():
try:
venv = subprocess.check_output(["pipenv", "--bare",
"--venv"])
- return pathlib2.Path(venv.decode("utf-8").rstrip("\n"))
+ return pathlib.Path(venv.decode("utf-8").rstrip("\n"))
except subprocess.CalledProcessError:
return None