mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-28 10:38:26 +00:00
12 lines
144 B
Python
12 lines
144 B
Python
|
# coding=utf-8
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def set_libs():
|
||
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../libs/'))
|
||
|
|
||
|
|
||
|
set_libs()
|