fix bad bug #4
parent
5528fd02e7
commit
0d7bee8ea8
|
@ -2,5 +2,5 @@ import discordwebhook, datetime
|
||||||
|
|
||||||
def send_url_to_discord(webhook_url: str, backup_url: str, datetim: 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 {str(datetim.year)}-{str(datetim.month)}-{str(datetim.day)}", description=backup_url)
|
embed = discordwebhook.Embed(title=f"Backup of {backup_name} from {datetim.strftime("%Y-%m-%d")}", description=backup_url)
|
||||||
webhook.send_sync(content="", embed=embed)
|
webhook.send_sync(content="", embed=embed)
|
Loading…
Reference in New Issue