Skip to content
Snippets Groups Projects
Commit 79f70120 authored by Cresson Remi's avatar Cresson Remi
Browse files

Merge branch 'auth-link-without-ansi-color' into 'main'

Authentication link without ANSI color

See merge request !26
parents 63847a67 099a764e
No related branches found
Tags r0.3.1
1 merge request!26Authentication link without ANSI color
Pipeline #264813 failed
......@@ -119,7 +119,7 @@ class DeviceGrant(GrantMethodBase):
response = DeviceGrantResponse(**ret.json())
verif_url_comp = response.verification_uri_complete
log.info("Open the following URL in your browser to grant access:")
log.info("\033[92m%s\033[0m", verif_url_comp)
log.info("\033[92m %s \033[0m", verif_url_comp)
# QR code
qr_code = qrcode.QRCode()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment