mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-11 18:06:24 +08:00
d4a74581da
This commit should fix issue #460
11 lines
144 B
Python
11 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()
|