diff options
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() |