From dd19faa9d7867fa6da33fd49d1d35defc9855028 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Tue, 22 Feb 2022 15:08:37 +0200 Subject: [PATCH] Update pypi.py --- plugins/pypi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pypi.py b/plugins/pypi.py index 3fcdf47..fedf96c 100644 --- a/plugins/pypi.py +++ b/plugins/pypi.py @@ -5,7 +5,7 @@ def pypi(self,args): response = requests.get(self.url) if response.status_code != 200: - exit(f"{white}[{red}-{white}] github: user not found{reset} ") + exit(f"{white}[{red}-{white}] pypi: user not found{reset} ") soup = BeautifulSoup(response.text, 'html.parser') print('\n\t'+soup.title.string) print(soup.main.get_text())