From 706f1f5a1a229ac317602deacaa0a6468b523ce3 Mon Sep 17 00:00:00 2001 From: J Madgwick <32958136+JMadgwick@users.noreply.github.com> Date: Sun, 16 Jul 2023 12:30:59 +0100 Subject: [PATCH] Update release note URL Includes a note on future improvements --- src/modules/misc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/misc.py b/src/modules/misc.py index 3e43ee654..d5b5fab37 100644 --- a/src/modules/misc.py +++ b/src/modules/misc.py @@ -115,12 +115,12 @@ def get_traceback_message(): message.""").format(version=VERSION) def get_release_notes_url(): - """Return a release note URL pointing to the correct release notes - for this version""" + """Return a URL pointing to release notes""" + # Note: Would ideally return a release version specific URL # TBD: replace with a call to api.info() that can return a "release" # attribute of form YYYYMM against the SUNWsolnm package - return "https://docs.openindiana.org/release-notes/latest-changes/" + return "https://www.openindiana.org/" def time_to_timestamp(t): """convert seconds since epoch to %Y%m%dT%H%M%SZ format"""