summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Fadil <fadil.parves@gmail.com>2023-11-03 23:27:03 +0800
committerGitHub <noreply@github.com>2023-11-03 15:27:03 +0000
commit1386cbb277fa3eeb4c6305879a269889352bdab9 (patch)
treea9cc7ab47d585fb63221ecccbf75e101e28733ff
parent478fd5ec2d6fcbc4bdc2e8a8f5f8263807970df9 (diff)
Fix the redirect for intro to the correct url for docs (#5658)
* fix the redirect for intro to the correct url for docs * fix code linting --------- Co-authored-by: James Maslek <jmaslek11@gmail.com>
-rw-r--r--openbb_terminal/terminal_controller.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/openbb_terminal/terminal_controller.py b/openbb_terminal/terminal_controller.py
index 81b4a5a19a8..abda862b6bd 100644
--- a/openbb_terminal/terminal_controller.py
+++ b/openbb_terminal/terminal_controller.py
@@ -607,7 +607,9 @@ class TerminalController(BaseController):
def call_intro(self, _):
"""Process intro command."""
- webbrowser.open("https://docs.openbb.co/terminal/usage/basics")
+ webbrowser.open(
+ "https://docs.openbb.co/terminal/usage/overview/structure-and-navigation"
+ )
def call_exe(self, other_args: List[str]):
"""Process exe command."""
@@ -830,7 +832,9 @@ def terminal(jobs_cmds: Optional[List[str]] = None, test_mode=False):
if first_time_user():
with contextlib.suppress(EOFError):
- webbrowser.open("https://docs.openbb.co/terminal/usage/basics")
+ webbrowser.open(
+ "https://docs.openbb.co/terminal/usage/overview/structure-and-navigation"
+ )
t_controller.print_help()
check_for_updates()