Remove useless print

This commit is contained in:
Cadence Ember 2020-08-31 20:27:17 +12:00
parent 105161299f
commit 951c62d1a9
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412
1 changed files with 0 additions and 1 deletions

View File

@ -111,7 +111,6 @@ def extract_channel_latest(ucid):
if ucid in channel_latest_cache:
return channel_latest_cache[ucid]
print("making request for "+ucid)
with requests.get("https://www.youtube.com/feeds/videos.xml?channel_id={}".format(ucid)) as r:
r.raise_for_status()
feed = ET.fromstring(r.content)