1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

utils.output: dot and dash is optional

This commit is contained in:
Johan Andersson 2018-10-05 23:25:52 +02:00
parent 22d387717e
commit 7c2d86375e

View File

@ -175,7 +175,7 @@ def _formatname(output, config, extension):
name = name.replace("{ext}", output[key])
# Remove all {text} we cant replace with something
for item in re.findall("([\.\-](([^\.\-]+\w+)?\{[\w\-]+\}))", name):
for item in re.findall("([\.\-]?(([^\.\-]+\w+)?\{[\w\-]+\}))", name):
if "season" in output and output["season"] and re.search("(e\{[\w\-]+\})", name):
name = name.replace(re.search("(e\{[\w\-]+\})", name).group(1), "")
else: