diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-06 18:42:36 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-06 18:42:36 +0530 |
commit | cd84ec47e2b33d8160969997860cde44318c4e28 (patch) | |
tree | 385ed348ddf62f4ffd7f87e0fd0274bc021883ab | |
parent | a36d5514c068a5006e3a3aeda3e9ac13f03f07ba (diff) |
fixed wrong color in generator.py
-rw-r--r-- | generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generator.py b/generator.py index 9214ef4..1bd9516 100644 --- a/generator.py +++ b/generator.py @@ -98,7 +98,7 @@ if __name__ == '__main__': auth_link = auth_link() print("Opening authentication prompt in web browser. If a browser doesn't get launched, please click on this link:") - print("\u001b[36;1m" + auth_link + "\u001b[0m") + print("\u001b[36m" + auth_link + "\u001b[0m") webbrowser.open(auth_link, new = 2) myServer = HTTPServer(('', 8080), MyServer) |