fix bad bug

main
Jan Beníček 2024-06-20 17:23:50 +02:00
parent 320f5b2f3a
commit 0038e79d31
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import discordwebhook, datetime import discordwebhook, datetime
def send_url_to_discord(webhook_url: str, backup_url: str, datetime: datetime.datetime, backup_name: str): def send_url_to_discord(webhook_url: str, backup_url: str, datetim: datetime.datetime, backup_name: str):
webhook = discordwebhook.Webhook(url=webhook_url) webhook = discordwebhook.Webhook(url=webhook_url)
embed = discordwebhook.Embed(title=f"Backup of {backup_name} from {datetime.year}-{datetime.month}-{datetime.day}", description=backup_url) embed = discordwebhook.Embed(title=f"Backup of {backup_name} from {datetim.year}-{datetim.month}-{datetim.day}", description=backup_url)
webhook.send_sync(content="", embed=embed) webhook.send_sync(content="", embed=embed)