From 46b3f8fbaf8cba60cc2a4abe0f8ace7e0f1f644d Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Sat, 7 Feb 2015 19:39:58 +0300 Subject: [PATCH] PEP8 fixes. #191 --- system/swift_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/swift_lib.py b/system/swift_lib.py index 080c0a8e..1deef72d 100644 --- a/system/swift_lib.py +++ b/system/swift_lib.py @@ -14,7 +14,7 @@ try: account_username = "%s:%s" % (auth_tenant, auth_username) swift_conn = swiftclient.Connection(auth_url, account_username, - auth_password, auth_version=2) + auth_password, auth_version=2) else: swift_conn = None except ImportError: @@ -53,7 +53,7 @@ class SwiftTest(BaseTest): def check_path(self, path): if not hasattr(self, "container_contents"): self.container_contents = [obj.get('name') for obj in - swift_conn.get_container(self.container_name)[1]] + swift_conn.get_container(self.container_name)[1]] if path in self.container_contents: return True