From: David-Sarah Hopwood Date: Thu, 21 Feb 2013 21:37:54 +0000 (+0000) Subject: openstack_container.py: remove a superfluous argument to get_auth_info_locked. X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=a1f66fd8af24d268865af7e02224d831978f4408;p=tahoe-lafs%2Ftahoe-lafs.git openstack_container.py: remove a superfluous argument to get_auth_info_locked. Signed-off-by: David-Sarah Hopwood --- diff --git a/src/allmydata/storage/backends/cloud/openstack/openstack_container.py b/src/allmydata/storage/backends/cloud/openstack/openstack_container.py index cd0048f3..4e52dc07 100644 --- a/src/allmydata/storage/backends/cloud/openstack/openstack_container.py +++ b/src/allmydata/storage/backends/cloud/openstack/openstack_container.py @@ -225,7 +225,7 @@ class AuthenticationClient(object): else: return self.get_auth_info_locked() - def get_auth_info_locked(self, suppress_errors=False): + def get_auth_info_locked(self): d = self._auth_lock.run(self._authenticate) d.addCallback(lambda ign: self._auth_info) return d