From 6fb6a0ec985be3c17227b6831f6b51565be6f225 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Mon, 28 Mar 2022 13:33:54 +0200 Subject: [PATCH] Update main.py --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index e8bbc1d..80b60c0 100644 --- a/src/main.py +++ b/src/main.py @@ -405,7 +405,7 @@ class octosuite: # Update program def update(self): logging.info('Fetching updates...') - files_to_update = ['src/main.py','lib/banner.py','lib/colors.py','octosuite','LICENSE','README.md','requirements.txt'] + files_to_update = ['src/main.py','lib/banner.py','lib/colors.py','octosuite','.github/dependabot.yml','LICENSE','README.md','requirements.txt'] for file in tqdm(files_to_update,desc=f'{colors.white}[{colors.green}*{colors.white}] Fetching updates...{colors.reset}'): data = urllib.request.urlopen(f'https://raw.githubusercontent.com/rly0nheart/octosuite/master/{file}').read() with open(file, 'wb') as code: