From a94b56efca3594bb5b499eda43990afe3ab17d67 Mon Sep 17 00:00:00 2001 From: Rodion Tikunov Date: Fri, 28 Oct 2016 18:11:19 +0300 Subject: [PATCH] Fix typo in set unicode metadata key Fixes typo in commit 0fd11f30f4a06f7b8cb701fa476aae4f193ac963 Change-Id: I50c59b92f6f65f7b6aa23fd530f6c4b105ad6b1d Closes-Bug: #1622631 --- cinderclient/apiclient/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/apiclient/base.py b/cinderclient/apiclient/base.py index ef7e258ba..37cfaf100 100644 --- a/cinderclient/apiclient/base.py +++ b/cinderclient/apiclient/base.py @@ -509,7 +509,7 @@ class Resource(RequestIdMixin): raise AttributeError(k) else: - if k in self.__.dict__: + if k in self.__dict__: return self.__dict__[k] return self._info[k]