Skip to content

Commit a4ff399

Browse files
author
vtheno
committed
modify Path('~/.pspy') to Path(sys.executable).parent
1 parent 1ff682b commit a4ff399

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pspy_proxy/common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
from pathlib import Path
2-
out_path = Path('~/.pspy/bin').expanduser()
2+
import sys.executeable as execPATH
3+
# out_path = Path('~/.pspy/bin').expanduser()
4+
out_path = Path(execPATH).parent.expanduser()

0 commit comments

Comments
 (0)