mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
Move common libs to libs/common
This commit is contained in:
parent
8dbb1a2451
commit
1f4bd41bcc
1612 changed files with 962 additions and 10 deletions
|
@ -14,9 +14,13 @@ import time
|
|||
|
||||
# init libs
|
||||
PROGRAM_DIR = os.path.dirname(os.path.normpath(os.path.abspath(os.path.join(__file__, os.pardir))))
|
||||
|
||||
LIBS_DIR = os.path.join(PROGRAM_DIR, 'libs')
|
||||
sys.path.insert(0, LIBS_DIR)
|
||||
|
||||
LIBS_DIR_COMMON = os.path.join(LIBS_DIR, 'common')
|
||||
sys.path.insert(0, LIBS_DIR_COMMON)
|
||||
|
||||
# init preliminaries
|
||||
SYS_ARGV = sys.argv[1:]
|
||||
APP_FILENAME = sys.argv[0]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue