summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2023-03-07 05:37:23 -0800
committerGitHub <noreply@github.com>2023-03-07 08:37:23 -0500
commit9e294fcf8036597038bf4ad607466693ce6ffd6a (patch)
tree285adca353636f8bc11b4ace61e70532b41aed69
parentbc93f8ff9f6dcc30e78236bcc7424c0f729194c4 (diff)
fixes broken URL for (#4414)
Co-authored-by: James Maslek <jmaslek11@gmail.com>
-rw-r--r--openbb_terminal/terminal_helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_terminal/terminal_helper.py b/openbb_terminal/terminal_helper.py
index 9eb665264d4..a999a49e443 100644
--- a/openbb_terminal/terminal_helper.py
+++ b/openbb_terminal/terminal_helper.py
@@ -134,7 +134,7 @@ def open_openbb_documentation(
path = "/"
command = ""
elif "keys" in path:
- path = "/guides/advanced/api-keys"
+ path = "/quickstart/api-keys"
command = ""
elif "settings" in path:
path = "/guides/advanced/customizing-the-terminal"
@@ -170,7 +170,7 @@ def open_openbb_documentation(
if command:
if command == "keys":
- path = "/guides/advanced/api-keys"
+ path = "/quickstart/api-keys"
command = ""
elif "settings" in path or "featflags" in path:
path = "/guides/advanced/customizing-the-terminal"