summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Lamar <brian.lamar@rackspace.com>2011-03-18 09:56:38 -0400
committerBrian Lamar <brian.lamar@rackspace.com>2011-03-18 09:56:38 -0400
commit204ec967ee46079fb95a18fcfb1167ff57458015 (patch)
treec7042ab96892bd2ae29293fb0056a7bca39e0ba0
parent6e9a95fe81c389c672b5150d64749b274975f7bc (diff)
downloadnova-204ec967ee46079fb95a18fcfb1167ff57458015.tar.gz
nova-204ec967ee46079fb95a18fcfb1167ff57458015.tar.xz
nova-204ec967ee46079fb95a18fcfb1167ff57458015.zip
enable-msg -> enable
-rw-r--r--nova/auth/fakeldap.py2
-rw-r--r--nova/tests/objectstore_unittest.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/auth/fakeldap.py b/nova/auth/fakeldap.py
index e8f5771d5..79afb9109 100644
--- a/nova/auth/fakeldap.py
+++ b/nova/auth/fakeldap.py
@@ -277,7 +277,7 @@ class FakeLDAP(object):
attrs = dict([(k, v) for k, v in attrs.iteritems()
if not fields or k in fields])
objects.append((key[len(self.__prefix):], attrs))
- # pylint: enable-msg=E1103
+ # pylint: enable=E1103
if objects == []:
raise NO_SUCH_OBJECT()
return objects
diff --git a/nova/tests/objectstore_unittest.py b/nova/tests/objectstore_unittest.py
index 5d160bdf8..4e2ac205e 100644
--- a/nova/tests/objectstore_unittest.py
+++ b/nova/tests/objectstore_unittest.py
@@ -212,7 +212,7 @@ class S3APITestCase(test.TestCase):
# pylint: disable=E1101
self.listening_port = reactor.listenTCP(0, self.site,
interface='127.0.0.1')
- # pylint: enable-msg=E1101
+ # pylint: enable=E1101
self.tcp_port = self.listening_port.getHost().port
if not boto.config.has_section('Boto'):