summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorAlex Meade <alex.meade@rackspace.com>2011-06-07 14:33:01 -0400
committerAlex Meade <alex.meade@rackspace.com>2011-06-07 14:33:01 -0400
commitd920e7f53e59b1def67f7528dd6b6bcf35ba96b4 (patch)
tree3a7551aee2ae7d20cd6c8d9b65511d9b699108e8 /nova
parentc680176d11edb46a28ba065f0548e18cbf1297d5 (diff)
Disabled pylint complaining about no 'self' parameter in a decorator function
Diffstat (limited to 'nova')
-rw-r--r--nova/auth/ldapdriver.py2
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.
"""