diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-08-11 19:47:37 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-08-11 19:47:37 -0700 |
commit | 81ff5ab99ca05c4559c604ba7517d17f4bc79ea8 (patch) | |
tree | f096f79bb6fd885f9f600c9cf7b62072fd592553 /youtube/channel.py | |
parent | 804ed093ee2a18f72b4e393664459a3b74186412 (diff) | |
download | yt-local-81ff5ab99ca05c4559c604ba7517d17f4bc79ea8.tar.lz yt-local-81ff5ab99ca05c4559c604ba7517d17f4bc79ea8.tar.xz yt-local-81ff5ab99ca05c4559c604ba7517d17f4bc79ea8.zip |
extract_channel_info: Improve error extraction
Use extract_str function since it's not always 'simpleText'
Make sure we don't output an empty error message if we don't
know what it is.
channel.py: Don't check if error message is empty, check if it's
None
Diffstat (limited to 'youtube/channel.py')
-rw-r--r-- | youtube/channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/channel.py b/youtube/channel.py index 394ce1b..153760b 100644 --- a/youtube/channel.py +++ b/youtube/channel.py @@ -203,7 +203,7 @@ def get_channel_page_general_url(base_url, tab, request, channel_id=None): info = yt_data_extract.extract_channel_info(json.loads(polymer_json), tab) - if info['error']: + if info['error'] is not None: return flask.render_template('error.html', error_message = info['error']) post_process_channel_info(info) |