mirror of https://github.com/morpheus65535/bazarr
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()
|