From 7d617ff35e57f6a427bcb1abb7e038c82b4a22bf Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 5 Apr 2019 12:45:59 +1300 Subject: [PATCH] Add MOUNTED to core --- core/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/__init__.py b/core/__init__.py index 56f08bce..0cf51241 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -194,6 +194,7 @@ META_CONTAINER = [] SECTIONS = [] CATEGORIES = [] +MOUNTED = None GETSUBS = False TRANSCODE = None CONCAT = None @@ -499,6 +500,7 @@ def configure_containers(): def configure_transcoder(): + global MOUNTED global GETSUBS global TRANSCODE global DUPLICATE @@ -543,6 +545,7 @@ def configure_transcoder(): global ALLOWSUBS global DEFAULTS + MOUNTED = None GETSUBS = int(CFG['Transcoder']['getSubs']) TRANSCODE = int(CFG['Transcoder']['transcode']) DUPLICATE = int(CFG['Transcoder']['duplicate'])