diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-12-31 00:00:06 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-12-31 00:00:06 -0800 |
commit | 005c1239a654ef4f3594c028ae68ddac4fb30676 (patch) | |
tree | 68ce4e1518b3f777ab8550a04367b44d7196904e /youtube/post_comment.py | |
parent | e98f693aafe9bf7f3252c00f57b1aa00bfdf2b80 (diff) | |
download | yt-local-005c1239a654ef4f3594c028ae68ddac4fb30676.tar.lz yt-local-005c1239a654ef4f3594c028ae68ddac4fb30676.tar.xz yt-local-005c1239a654ef4f3594c028ae68ddac4fb30676.zip |
Rename username to channel_id in more places
Diffstat (limited to 'youtube/post_comment.py')
-rw-r--r-- | youtube/post_comment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/post_comment.py b/youtube/post_comment.py index dca8a1f..45e9f4b 100644 --- a/youtube/post_comment.py +++ b/youtube/post_comment.py @@ -108,8 +108,8 @@ def get_session_token(video_id, cookiejar): raise Exception("Couldn't find xsrf_token") def post_comment(parameters, fields): - username = fields['username'][0] - cookiejar = accounts.account_cookiejar(username) + channel_id = fields['channel_id'][0] + cookiejar = accounts.account_cookiejar(channel_id) #parameters = urllib.parse.parse_qs(query_string) try: |