From e0f9a51303ccc613d0036ed0a5ff85310a6451de Mon Sep 17 00:00:00 2001 From: "Xavier C. Llano" Date: Sun, 24 Mar 2024 21:58:40 -0500 Subject: [PATCH] I realized that at the end of Google authentication, the user must close the page to finish the authentication process; otherwise Qgis gets stuck waiting for the user to close the page (at least on Linux). So, it's good to clarify the instructions at the end so that users can close the page. --- ee_auth.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ee_auth.py b/ee_auth.py index ec520f4..9146df6 100644 --- a/ee_auth.py +++ b/ee_auth.py @@ -30,7 +30,8 @@ def do_GET(self): self.send_response(200) self.send_header('Content-type', 'text/plain') self.end_headers() - self.wfile.write(bytes("QGIS Google Earth Engine plugin authentication finished successfully.", 'utf-8')) + self.wfile.write(bytes("Authentication for the QGIS Google Earth Engine plugin has been successfully completed. " + "You may now close this page.", 'utf-8')) def authenticate(ee=None): """