diff options
author | Lorenz Diener <[email protected]> | 2019-05-31 13:45:35 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2019-05-31 13:45:35 +0200 |
commit | 739d22e642938ae61b4ec83c4b566714d2f7d498 (patch) | |
tree | d4a67be8ff774ba38667b90ccfda1bcafb6a5c58 /mastodon | |
parent | 8d3bcd4cb76ae674f7d8fabedacaa3dab74561cc (diff) | |
download | mastodon.py-739d22e642938ae61b4ec83c4b566714d2f7d498.tar.gz |
Fix #173
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 9aa5320..7b6c801 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -506,7 +506,7 @@ class Mastodon: | |||
506 | params['client_secret'] = self.client_secret | 506 | params['client_secret'] = self.client_secret |
507 | 507 | ||
508 | if agreement == False: | 508 | if agreement == False: |
509 | del params_initial['agreement'] | 509 | del params['agreement'] |
510 | 510 | ||
511 | # Step 1: Get a user-free token via oauth | 511 | # Step 1: Get a user-free token via oauth |
512 | try: | 512 | try: |