From 3125c45efb02dad0b2dc2f975cd285fa24ba477c Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:13:07 +0200 Subject: [PATCH] Update octosuite.py --- octosuite/octosuite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index e715378..e312be4 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -78,8 +78,8 @@ def check_updates(): if response['tag_name'] == version_tag: pass else: - markdown = response['body'] - release_notes = Markdown(markdown) + markdown_text = response['body'] + release_notes = Markdown(markdown_text) xprint(f"[{green}UPDATE{reset}] A new release of Octosuite is available ({response['tag_name']}).\n\n{release_notes}\n\nRun 'pip install --upgrade octosuite' to get the updates.\n")