mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-24 16:52:06 +00:00
Test
This commit is contained in:
parent
121b95df09
commit
277db7582f
3 changed files with 13 additions and 3 deletions
|
@ -0,0 +1,8 @@
|
|||
from get_general_settings import *
|
||||
|
||||
import git
|
||||
|
||||
g = git.cmd.Git(os.path.dirname(__file__))
|
||||
g.pull('origin ' + branch + '--dry-run')
|
||||
|
||||
print g
|
|
@ -22,6 +22,9 @@ if general_settings[3] is None:
|
|||
path_mappings = []
|
||||
else:
|
||||
path_mappings = ast.literal_eval(general_settings[3])
|
||||
log_level = general_settings[4]
|
||||
branch = general_settings[5]
|
||||
automatic = general_settings[6]
|
||||
|
||||
def path_replace(path):
|
||||
for path_mapping in path_mappings:
|
||||
|
@ -48,5 +51,3 @@ def path_replace_reverse(path):
|
|||
path = path.replace('\\', '/')
|
||||
|
||||
return path
|
||||
|
||||
#print path_replace_reverse(r'\\\\serveur\\media\\Series TV\\Vikings\\Season 03\\Vikings.S03E01.720p.HDTV.x264-KILLERS.mkv')
|
||||
|
|
|
@ -4,6 +4,7 @@ bottle
|
|||
bottle-fdsend
|
||||
dogpile.cache
|
||||
enzyme
|
||||
gitpython
|
||||
Pillow
|
||||
py-pretty
|
||||
pycountry
|
||||
|
|
Loading…
Reference in a new issue