This commit is contained in:
flaskfarm
2022-10-18 13:04:04 +09:00
parent e30ca52a9a
commit cc18bc23f6
5 changed files with 8 additions and 5 deletions

View File

@@ -1 +1,5 @@
from . import main import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib'))

0
cli/__init__.py Normal file
View File

View File

@@ -3,7 +3,7 @@ import argparse
import os import os
import sys import sys
sys.path.append(os.path.dirname(os.path.dirname(__file__))) sys.path.append(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib'))
from support import SupportFile, SupportSC, logger from support import SupportFile, SupportSC, logger

View File

@@ -1 +1 @@
VERSION="4.0.21" VERSION="4.0.26"

View File

@@ -7,8 +7,7 @@ import os
import sys import sys
import traceback import traceback
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib')) sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib'))
sys.path.insert(1, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib2'))
try: try:
from framework import frame from framework import frame