[postprocessor/metadatafromtitle] Add support regex syntax for --metadata-from-title (closes #13065)
This commit is contained in:
parent
12f01118b0
commit
fa26734e07
2 changed files with 9 additions and 6 deletions
|
@ -9,7 +9,9 @@ class MetadataFromTitlePP(PostProcessor):
|
|||
def __init__(self, downloader, titleformat):
|
||||
super(MetadataFromTitlePP, self).__init__(downloader)
|
||||
self._titleformat = titleformat
|
||||
self._titleregex = self.format_to_regex(titleformat)
|
||||
self._titleregex = (self.format_to_regex(titleformat)
|
||||
if re.search(r'%\(\w+\)s', titleformat)
|
||||
else titleformat)
|
||||
|
||||
def format_to_regex(self, fmt):
|
||||
r"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue