From 32c04ba1d160830cfaed9761e576f908ba43b544 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Tue, 3 Dec 2013 15:32:53 +0100 Subject: [PATCH] Fix spelling mistakes. Change-Id: I8ff75366e9a689102839b2a122b978d2f548c00b --- swsync/filler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swsync/filler.py b/swsync/filler.py index 7f5c15a..abb512b 100644 --- a/swsync/filler.py +++ b/swsync/filler.py @@ -137,10 +137,10 @@ def create_swift_account(client, pile, def delete_account_content(acc, user): cnx = swift_cnx(acc, user[0]) account_infos = cnx.get_account(full_listing=True) - # Retreive container list + # Retrieve container list container_l = account_infos[1] containers_name = [ci['name'] for ci in container_l] - # Retreive object list + # Retrieve object list for container in containers_name: container_infos = cnx.get_container(container) object_names = [obj_detail['name'] for obj_detail