Commit 409756dc by Sébastien Eustace

Remove print() call

parent bf2d515a
...@@ -949,7 +949,6 @@ class VirtualEnv(Env): ...@@ -949,7 +949,6 @@ class VirtualEnv(Env):
@property @property
def sys_path(self): # type: () -> List[str] def sys_path(self): # type: () -> List[str]
output = self.run("python", "-", input_=GET_SYS_PATH) output = self.run("python", "-", input_=GET_SYS_PATH)
print(output)
return json.loads(output) return json.loads(output)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment