Merge "Fix typo in set unicode metadata key"

This commit is contained in:
Jenkins
2016-11-27 20:34:01 +00:00
committed by Gerrit Code Review

View File

@@ -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]