Support for AutoEnc in SBS mode, fix MKV ext, auto skip magick dedupe by default

This commit is contained in:
N00MKRAD
2020-12-07 12:34:12 +01:00
parent a29c654dbb
commit b579fcbab2
11 changed files with 148 additions and 128 deletions

View File

@@ -72,13 +72,13 @@ namespace Flowframes.OS
bool isInstalled = false;
Logger.Log("Checking if system Python is available...");
Logger.Log("Checking if system Python is available...", true);
string sysPyVer = GetSysPyVersion();
if (!string.IsNullOrWhiteSpace(sysPyVer) && !sysPyVer.ToLower().Contains("not found") && sysPyVer.Length <= 35)
{
isInstalled = true;
Logger.Log("Using Python installation: " + sysPyVer, false, true);
Logger.Log("Using Python installation: " + sysPyVer, true);
}
hasCheckedSysPy = true;