mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 13:36:35 +00:00
Don't embed spaces in keys
This commit is contained in:
parent
470dbf426e
commit
1bbfed8e4d
@ -206,7 +206,7 @@ def download_media(
|
|||||||
postprocessors = list(
|
postprocessors = list(
|
||||||
dict(
|
dict(
|
||||||
_postprocessor_opts_parser( *val.split(':', 1) )
|
_postprocessor_opts_parser( *val.split(':', 1) )
|
||||||
) for val in postprocessors.split(',')
|
) for val in map(str.strip, postprocessors.split(','))
|
||||||
)
|
)
|
||||||
if not isinstance(postprocessors, list):
|
if not isinstance(postprocessors, list):
|
||||||
postprocessors = list()
|
postprocessors = list()
|
||||||
|
Loading…
Reference in New Issue
Block a user