diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-06-11 01:50:01 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-06-11 01:50:01 -0700 |
commit | cc9283ad5332f59a69a91d9d0fab299779de513c (patch) | |
tree | 7c574f0bfd1f2f8bc921317e26e2e33fccb3013b /youtube | |
parent | 59fdbda886c1bc1acc12da7061b0710b048ce252 (diff) | |
download | yt-local-cc9283ad5332f59a69a91d9d0fab299779de513c.tar.lz yt-local-cc9283ad5332f59a69a91d9d0fab299779de513c.tar.xz yt-local-cc9283ad5332f59a69a91d9d0fab299779de513c.zip |
Fix checking specific channels
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/subscriptions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 5d049be..fdba114 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -320,6 +320,7 @@ def check_tags(tags): def check_specific_channels(channel_ids): with open_database() as connection: with connection as cursor: + channel_id_name_list = [] for channel_id in channel_ids: channel_id_name_list += cursor.execute('''SELECT yt_channel_id, channel_name FROM subscribed_channels |