diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-10 19:52:49 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:51:26 +0530 |
commit | 93240fc1848de4a94f25844c96e0dcd282ef1d3b (patch) | |
tree | 0008ef502170dfeec7a81181345c8b0942d1efa1 /yt_dlp/extractor/myvideoge.py | |
parent | 47ab66db0f083a76c7fba0f6e136b21dd5a93e3b (diff) |
[cleanup] Fix misc bugs (#8968)
Closes #8816
Authored by: bashonly, seproDev, pukkandan, Grub4k
Diffstat (limited to 'yt_dlp/extractor/myvideoge.py')
-rw-r--r-- | yt_dlp/extractor/myvideoge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/myvideoge.py b/yt_dlp/extractor/myvideoge.py index 64cee48e7..3e0bb2499 100644 --- a/yt_dlp/extractor/myvideoge.py +++ b/yt_dlp/extractor/myvideoge.py @@ -64,7 +64,7 @@ class MyVideoGeIE(InfoExtractor): # translate any ka month to an en one re.sub('|'.join(self._MONTH_NAMES_KA), lambda m: MONTH_NAMES['en'][self._MONTH_NAMES_KA.index(m.group(0))], - upload_date, re.I)) + upload_date, flags=re.I)) if upload_date else None) return { |