[utils] Skip missing params in cli_bool_option (closes #13865)
authorSergey M․ <dstftw@gmail.com>
Wed, 9 Aug 2017 15:28:19 +0000 (22:28 +0700)
committerSergey M․ <dstftw@gmail.com>
Wed, 9 Aug 2017 15:28:19 +0000 (22:28 +0700)
test/test_utils.py
youtube_dl/utils.py

index 7803e5bc74663371620bf12ac09656c0fbbdaf96..2aab16b97c300ee1858cffba0eff3f352009a404 100644 (file)
@@ -1182,6 +1182,10 @@ part 3</font></u>
             cli_bool_option(
                 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
             ['--check-certificate=true'])
+        self.assertEqual(
+            cli_bool_option(
+                {}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
+            [])
 
     def test_ohdave_rsa_encrypt(self):
         N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
index fdf5e29e7d417b94ba7f83129a8420f93ed31217..c9cbd58426e2c63e95d317ef81b01472d2a166c6 100644 (file)
@@ -2733,6 +2733,8 @@ def cli_option(params, command_option, param):
 
 def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
     param = params.get(param)
+    if param is None:
+        return []
     assert isinstance(param, bool)
     if separator:
         return [command_option + separator + (true_value if param else false_value)]