mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
fix: suggest correct PYTHONPATH
This commit is contained in:
parent
3126a64463
commit
cc8d333801
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.5a2-4-gc960808-dev"
|
||||
__version__ = "23.5a2-5-g4e6acac-dev"
|
||||
|
||||
|
||||
class Config:
|
||||
|
@ -1057,7 +1057,7 @@ class Viv:
|
|||
echo("Remember to include the following line in your shell rc file:")
|
||||
sys.stderr.write(
|
||||
' export PYTHONPATH="$PYTHONPATH:$HOME/'
|
||||
f'{src.relative_to(Path.home())}"\n'
|
||||
f'{src.relative_to(Path.home()).parent}"\n'
|
||||
)
|
||||
|
||||
def manage(self, args: Namespace) -> None:
|
||||
|
|
Loading…
Reference in a new issue