diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-01-06 01:33:52 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-01-06 01:33:52 -0800 |
commit | bb2d40ac83f222678ed5b4265355b9f146f2ba3e (patch) | |
tree | 836262b08777a3ad9e23c700d1c4f81d45ffe73c /youtube/comments.py | |
parent | eea16e5ac32696ea711fbc3846c113ccdfd2928b (diff) | |
download | yt-local-bb2d40ac83f222678ed5b4265355b9f146f2ba3e.tar.lz yt-local-bb2d40ac83f222678ed5b4265355b9f146f2ba3e.tar.xz yt-local-bb2d40ac83f222678ed5b4265355b9f146f2ba3e.zip |
rename env['fields'] to env['parameters'] and rename fields to parameters in general
Diffstat (limited to 'youtube/comments.py')
-rw-r--r-- | youtube/comments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/comments.py b/youtube/comments.py index 4860636..5181ee8 100644 --- a/youtube/comments.py +++ b/youtube/comments.py @@ -358,7 +358,7 @@ $options </form>''') def get_comments_page(env, start_response): start_response('200 OK', [('Content-type','text/html'),] ) - parameters = env['fields'] + parameters = env['parameters'] ctoken = default_multi_get(parameters, 'ctoken', 0, default='') replies = False if not ctoken: |