diff options
author | Nao Pross <np@0hm.ch> | 2022-11-12 17:44:08 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2022-11-12 17:44:08 +0100 |
commit | 8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142 (patch) | |
tree | 2b1b46cbd3ef0e03bb60203839e926b016877d67 /muddle/moodle.py | |
parent | Continue refractor of muddle.moodle (diff) | |
download | Muddle-8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142.tar.gz Muddle-8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142.zip |
Update to PyQt6
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) |