Remove processTVDB from postprocess

This commit is contained in:
DariusIII
2015-10-26 09:31:36 +01:00
parent 06ba4ccdb1
commit 4e49ba64af
2 changed files with 1 additions and 4 deletions
@@ -52,7 +52,6 @@ if (!isset($argv[1]) || !in_array($argv[1], $args) || !isset($argv[2]) || !in_ar
. "php postprocess.php book true ...: Processes books.\n"
. "php postprocess.php anime true ...: Processes anime.\n"
. "php postprocess.php tv true ...: Processes tv.\n"
. "php postprocess.php tvdb true ...: Processes tvdb.\n"
. "php postprocess.php xxx true ...: Processes xxx.\n"
. "php postprocess.php additional true ...: Processes previews/mediainfo/etc...\n"
. "php postprocess.php sharing true ...: Processes uploading/downloading comments.\n"
@@ -129,9 +128,6 @@ switch ($argv[1]) {
case 'tv':
$postProcess->processTV('', (isset($argv[3]) && in_array($argv[3], $charArray) ? $argv[3] : ''));
break;
case 'tvdb':
$postProcess->processTvDB();
break;
case 'xxx':
$postProcess->processXXX();
break;