put home in sys.path

This commit is contained in:
2021-04-28 12:28:45 +02:00
parent 6a34bd164b
commit 5a1bdbf9a2
6 changed files with 6 additions and 8 deletions

View File

@ -22,7 +22,8 @@
# *****************************************************************************
import sys
from os.path import join, abspath, dirname
from os.path import expanduser
sys.path.append(expanduser('~'))
from servicemanager import run
run('frappy', sys.argv[1:])

View File

@ -22,7 +22,8 @@
# *****************************************************************************
import sys
from os.path import join, abspath, dirname
from os.path import expanduser
sys.path.append(expanduser('~'))
from servicemanager import run
run('sea', sys.argv[1:])

View File

@ -22,7 +22,8 @@
# *****************************************************************************
import sys
from os.path import join, abspath, dirname
from os.path import expanduser
sys.path.append(expanduser('~'))
from servicemanager import run
run('seweb', sys.argv[1:])