diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-06-07 14:33:01 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-06-07 14:33:01 -0400 |
| commit | d920e7f53e59b1def67f7528dd6b6bcf35ba96b4 (patch) | |
| tree | 3a7551aee2ae7d20cd6c8d9b65511d9b699108e8 | |
| parent | c680176d11edb46a28ba065f0548e18cbf1297d5 (diff) | |
Disabled pylint complaining about no 'self' parameter in a decorator function
| -rw-r--r-- | nova/auth/ldapdriver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/auth/ldapdriver.py b/nova/auth/ldapdriver.py index 183f7a985..7bcaa34b5 100644 --- a/nova/auth/ldapdriver.py +++ b/nova/auth/ldapdriver.py @@ -139,7 +139,7 @@ class LdapDriver(object): self.__cache = None return False - def __local_cache(key_fmt): + def __local_cache(key_fmt): #pylint: disable=E0213 """Wrap function to cache it's result in self.__cache. Works only with functions with one fixed argument. """ |
