Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the redirect for intro to the correct url for docs #5658

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions openbb_terminal/terminal_controller.py
fadilparves marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,9 @@ def call_funds(self, _):

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."""
Expand Down Expand Up @@ -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()
Expand Down
Loading