chore(lint): Run codespell

This commit is contained in:
Lev Vereshchagin
2021-12-10 11:54:51 +03:00
parent 1c9c4bd780
commit be7c6254f8
3 changed files with 3 additions and 3 deletions

View File

@@ -119,7 +119,7 @@ def delete_old_backups(limit, bucket, site_name):
for obj in bucket.objects.filter(Prefix=oldest_backup):
# delete all keys that are inside the oldest_backup
if bucket_dir in obj.key:
print("Deleteing " + obj.key)
print("Deleting " + obj.key)
s3.Object(bucket.name, obj.key).delete()