aboutsummaryrefslogtreecommitdiffstats
path: root/muddle/moodle.py
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2022-11-12 17:44:08 +0100
committerNao Pross <np@0hm.ch>2022-11-12 17:44:08 +0100
commit8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142 (patch)
tree2b1b46cbd3ef0e03bb60203839e926b016877d67 /muddle/moodle.py
parentContinue refractor of muddle.moodle (diff)
downloadMuddle-8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142.tar.gz
Muddle-8f23dea4a2c61c6aa37c4509fcd78e94f2dc1142.zip
Update to PyQt6
Diffstat (limited to '')
-rw-r--r--muddle/moodle.py2
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)