mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-24 08:27:29 +00:00
Do not actually write out pages.
This commit is contained in:
parent
36ae18c12f
commit
73b4fbabf7
@ -170,9 +170,6 @@ def extract_channel_latest(ucid):
|
|||||||
with requests.get("https://www.youtube.com/feeds/videos.xml?channel_id={}".format(ucid)) as r:
|
with requests.get("https://www.youtube.com/feeds/videos.xml?channel_id={}".format(ucid)) as r:
|
||||||
if r.status_code == 404:
|
if r.status_code == 404:
|
||||||
cherrypy.response.status = 404
|
cherrypy.response.status = 404
|
||||||
# write out page data for debugging
|
|
||||||
with open("channel_not_found_{}.xml".format(ucid), "wb") as f:
|
|
||||||
f.write(r.content)
|
|
||||||
return {
|
return {
|
||||||
"error": "This channel does not exist.",
|
"error": "This channel does not exist.",
|
||||||
"identifier": "NOT_FOUND"
|
"identifier": "NOT_FOUND"
|
||||||
|
Loading…
Reference in New Issue
Block a user