Skip to content

Commit

Permalink
MainWindow: Update 'Documentation' URL (#1349)
Browse files Browse the repository at this point in the history
* MainWindow: Update 'Documentation' URL

angr-management now has its own docs site, so point to it.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
mborgerson and pre-commit-ci[bot] authored Nov 12, 2024
1 parent cf5be7e commit 0bfacdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion angrmanagement/ui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ def open_newstate_dialog(self) -> None:
new_state_dialog.exec_()

def open_doc_link(self) -> None:
QDesktopServices.openUrl(QUrl("https://docs.angr.io/", QUrl.ParsingMode.TolerantMode))
QDesktopServices.openUrl(
QUrl("https://angr-management.readthedocs.io/en/latest/", QUrl.ParsingMode.TolerantMode)
)

def open_about_dialog(self) -> None:
dlg = LoadAboutDialog()
Expand Down

0 comments on commit 0bfacdf

Please sign in to comment.