From 6f5d69e7b5b52f9c407e0ca83231778a42a48722 Mon Sep 17 00:00:00 2001 From: Jay Payne Date: Sat, 29 Jan 2011 16:43:02 +0000 Subject: [PATCH] listing is a tuple correcting reference rv[1] --- swift/common/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/common/client.py b/swift/common/client.py index bf402adb76..1fffaa493d 100644 --- a/swift/common/client.py +++ b/swift/common/client.py @@ -222,7 +222,7 @@ def get_account(url, token, marker=None, limit=None, prefix=None, listing = \ get_account(url, token, marker, limit, prefix, http_conn)[1] if listing: - rv.extend(listing) + rv[1].extend(listing) return rv parsed, conn = http_conn qs = 'format=json'