diff --git a/README.rst b/README.rst index 0874aa7..0deca04 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ Then, to enable this plugin, run:: Usage ----- -In the Open edX studio, edit a course and add a new "Advanced blank problem" ("Problem" 🠆 "Advanced" 🠆 "Advanced blank problem"). Then, click "Edit" and copy-paste the following in the editor:: +In the Open edX studio, edit a course and add a new "Advanced blank problem" ("Problem" 🠆 "Advanced" 🠆 "Blank Advanced Problem"). Then, click "Edit" and copy-paste the following in the editor:: diff --git a/tutorxqueue/__about__.py b/tutorxqueue/__about__.py index d3ec452..3ced358 100644 --- a/tutorxqueue/__about__.py +++ b/tutorxqueue/__about__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/tutorxqueue/plugin.py b/tutorxqueue/plugin.py index fe22cc1..e9935ea 100644 --- a/tutorxqueue/plugin.py +++ b/tutorxqueue/plugin.py @@ -114,7 +114,7 @@ class Client: self.base_url = url if not self.base_url: scheme = "https" if user_config["ACTIVATE_HTTPS"] else "http" - host = host or user_config["XQUEUE_HOST"] + host = user_config["XQUEUE_HOST"] self.base_url = "{}://{}".format(scheme, host) self.login()