We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7546850 commit 6738e81Copy full SHA for 6738e81
tutorwordpress/plugin.py
@@ -1,7 +1,6 @@
1
from __future__ import annotations
2
3
import os
4
-from glob import glob
5
6
import click
7
from tutor import fmt, hooks, config as tutor_config
@@ -78,12 +77,10 @@ def config(context: click.Context) -> None:
78
77
protocol = "https" if config["ENABLE_HTTPS"] else "http"
79
lms_host = f"{protocol}://{config['LMS_HOST']}"
80
click.echo(fmt.title("WordPress Plugin Configurations"))
81
- click.echo(
82
fmt.echo_info(
83
"\n"
84
f"Open edX Domain: {lms_host} \n"
85
f"Client ID: {config['WORDPRESS_OAUTH2_KEY_SSO']} \n"
86
f"Client ID (dev): {config['WORDPRESS_OAUTH2_KEY_SSO_DEV']} \n"
87
f"Client Secret: {config['WORDPRESS_OAUTH2_SECRET']} \n"
88
- )
89
)
0 commit comments