Private GIT

Skip to content
Snippets Groups Projects
Commit 9bd654b1 authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Merge pull request #1976 from miigotu/editShow-lang-default

Fixes SiCKRAGETV/sickrage-issues#1747
parents 03537f2c 5a1869b2
Branches
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ This will <b>affect the episode show search</b> on nzb and torrent provider.<br
<b>Info Language:</b><br />
(this will only affect the language of the retrieved metadata file contents and episode filenames)<br />
<select name="indexerLang" id="indexerLangSelect" class="form-control form-control-inline input-sm bfh-languages" data-language="#echo $sickbeard.INDEXER_DEFAULT_LANGUAGE#" data-available="#echo ','.join($sickbeard.indexerApi().config['valid_languages'])#"></select><br />
<select name="indexerLang" id="indexerLangSelect" class="form-control form-control-inline input-sm bfh-languages" data-language="#echo $show.lang#" data-available="#echo ','.join($sickbeard.indexerApi().config['valid_languages'])#"></select><br />
<br />
<b>Flatten files (no folders): </b> <input type="checkbox" name="flatten_folders" #if $show.flatten_folders == 1 and not $sickbeard.NAMING_FORCE_FOLDERS then "checked=\"checked\"" else ""# #if $sickbeard.NAMING_FORCE_FOLDERS then "disabled=\"disabled\"" else ""#/><br />
......
......@@ -29,7 +29,7 @@ sys.path.insert(1, os.path.join(tests_dir, '..'))
class AllTests(unittest.TestCase):
#Block issue_submitter_tests to avoid issue tracker spam on every build
blacklist = [tests_dir + 'all_tests.py', tests_dir + 'issue_submitter_tests.py']
blacklist = [tests_dir + 'all_tests.py', tests_dir + 'issue_submitter_tests.py', tests_dir + 'feedparser_tests.py']
def setUp(self):
self.test_file_strings = [ x for x in glob.glob(tests_dir + '*_tests.py') if not x in self.blacklist ]
self.module_strings = [file_string[len(tests_dir):len(file_string) - 3] for file_string in self.test_file_strings]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment