From 5cdde92696107436a8bc94c208113652c9f6cfb5 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 17 Jan 2018 09:41:27 -0500 Subject: [PATCH] Replace append by insert for #40 --- bazarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr.py b/bazarr.py index 818752575..ffc5e923f 100644 --- a/bazarr.py +++ b/bazarr.py @@ -2,7 +2,7 @@ bazarr_version = '0.3.2' import os 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 import bottle