diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 16:23:19 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 16:23:19 -0700 |
commit | ebfe58e6cbc866c5e2dc4876a6b5868837d504b3 (patch) | |
tree | 3de4d65fd73349963a1aca6a9e410fde23ded8c2 /youtube/youtube.py | |
parent | 6980d93107354a8c075030a7bda4c3870449163b (diff) | |
download | yt-local-ebfe58e6cbc866c5e2dc4876a6b5868837d504b3.tar.lz yt-local-ebfe58e6cbc866c5e2dc4876a6b5868837d504b3.tar.xz yt-local-ebfe58e6cbc866c5e2dc4876a6b5868837d504b3.zip |
Ability to reply to comments
Diffstat (limited to 'youtube/youtube.py')
-rw-r--r-- | youtube/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/youtube.py b/youtube/youtube.py index 3c31fa4..29fa6a0 100644 --- a/youtube/youtube.py +++ b/youtube/youtube.py @@ -80,7 +80,7 @@ def youtube(env, start_response): else: start_response('400 Bad Request', ()) return b'400 Bad Request' - elif path == "/post_comment": + elif path in ("/post_comment", "/comments"): start_response('200 OK', () ) return account_functions.post_comment(query_string, fields).encode() |