diff options
Diffstat (limited to 'muddle/moodle.py')
-rw-r--r-- | muddle/moodle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muddle/moodle.py b/muddle/moodle.py index 8146fd4..a9a2c4c 100644 --- a/muddle/moodle.py +++ b/muddle/moodle.py @@ -15,7 +15,7 @@ def get_token(url, user, password): "password": password, "service": "moodle_mobile_app" } - log.debug(f"requesting token with POST to {api_url} with DATA {data}") + log.debug(f"requesting token with POST to {url} with DATA {data}") return requests.post(token_url, data=data) |