diff --git a/misskaty/plugins/scrapwebsite.py b/misskaty/plugins/scrapwebsite.py
index 440a6135..722c9719 100644
--- a/misskaty/plugins/scrapwebsite.py
+++ b/misskaty/plugins/scrapwebsite.py
@@ -116,7 +116,7 @@ async def movikucc(_, msg):
head = f"#Movieku Latest:\n--> Use /{msg.command[0]} [title] to start search with title.\n\n"
msgs = ""
for c, i in enumerate(data, start=1):
- msgs += f"{c}. {i['judul']}\nExtract: /{msg.commnd[0]}_scrap {i['link']}\n\n"
+ msgs += f"{c}. {i['judul']}\nExtract: /{msg.command[0]}_scrap {i['link']}\n\n"
if len(head.encode("utf-8") + msgs.encode("utf-8")) >= 4000:
await msg.reply(
head + msgs,
@@ -532,7 +532,9 @@ async def savefilm21_scrap(_, message):
soup = BeautifulSoup(html.text, "lxml")
res = soup.find_all(class_="button button-shadow")
res = "".join(f"{i.text}\n{i['href']}\n\n" for i in res)
- await message.reply(f"Hasil Scrap dari {link}:\n\n{res}", disable_web_page_preview=True)
+ await message.reply(
+ f"Hasil Scrap dari {link}:\n\n{res}", disable_web_page_preview=True
+ )
except IndexError:
return await message.reply(
f"Gunakan command /{message.command[0]} [link] untuk scrap link download"