diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-20 04:27:36 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-21 13:27:44 +0530 |
commit | 6970b6005e9c07c427d368bbe3f71f85878f325e (patch) | |
tree | 3c5090cb5729f896b28c0537bf94b6686a31ce38 /yt_dlp/extractor/common.py | |
parent | fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f (diff) |
[cleanup] Minor fixes
Closes #2334
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index e289a4ef8..74114e355 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -3504,8 +3504,6 @@ class InfoExtractor(object): def _int(self, v, name, fatal=False, **kwargs): res = int_or_none(v, **kwargs) - if 'get_attr' in kwargs: - print(getattr(v, kwargs['get_attr'])) if res is None: msg = 'Failed to extract %s: Could not parse value %r' % (name, v) if fatal: |