From 033e758e9e0debf4f917ddee9d48ef3969dcbb9b Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:27:56 +0200 Subject: [PATCH] Update octosuite.py --- octosuite/octosuite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index 68de3f0..9c55ad0 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -78,10 +78,10 @@ def check_updates(): if response['tag_name'] == version_tag: pass else: - markdown_text = response['body'] - release_notes = Markdown(markdown_text) + raw_release_notes = response['body'] + markdown_release_notes = Markdown(raw_release_notes) xprint(f"[{green}UPDATE{reset}] A new release of Octosuite is available ({response['tag_name']}). Run 'pip install --upgrade octosuite' to get the updates.\n") - xprint(release_notes) + xprint(markdown_release_notes) def list_dir_and_files():