mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-13 02:07:47 +08:00
Replace append by insert for #40
This commit is contained in:
parent
64846c0f1d
commit
5cdde92696
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ bazarr_version = '0.3.2'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
sys.path.append(os.path.join(os.path.dirname(__file__), 'libs/'))
|
sys.path.insert(0,os.path.join(os.path.dirname(__file__), 'libs/'))
|
||||||
|
|
||||||
from bottle import route, run, template, static_file, request, redirect, response
|
from bottle import route, run, template, static_file, request, redirect, response
|
||||||
import bottle
|
import bottle
|
||||||
|
|
Loading…
Reference in a new issue