From d7060e33dd6c11e7dd4fe9ad78499f897bd69e67 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Thu, 17 Mar 2022 21:25:26 +0200 Subject: [PATCH] v1.2.0 --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 78cbda7..129d183 100644 --- a/src/main.py +++ b/src/main.py @@ -404,7 +404,7 @@ class octosuite: # Update program def update(self): logging.info('Checking for update(s)...') - files_to_update = ['src/main.py','lib/banner.py','lib/colors.py','octosuite','LICENSE','README.md'] + files_to_update = ['src/main.py','lib/banner.py','lib/colors.py','octosuite','LICENSE','README.md','requirements.txt'] print(f'\n{colors.white}[{colors.green}*{colors.white}] Fetching update(s). Please wait...{colors.reset}',end='') for file in files_to_update: data = urllib.request.urlopen(f'https://raw.githubusercontent.com/rly0nheart/octosuite/master/{file}').read()