diff options
| author | Yuriy Taraday <yorik.sar@gmail.com> | 2011-06-01 18:34:54 +0400 |
|---|---|---|
| committer | Yuriy Taraday <yorik.sar@gmail.com> | 2011-06-01 18:34:54 +0400 |
| commit | 4d1271821f782d4e11934d69b4ffe3aced6072eb (patch) | |
| tree | aa68eaee64c4d0ece7bc9f585f116f2bfde59e11 /nova/auth | |
| parent | a26e21040681fd6db5a6ae862ca18ee17689854c (diff) | |
| download | nova-4d1271821f782d4e11934d69b4ffe3aced6072eb.tar.gz nova-4d1271821f782d4e11934d69b4ffe3aced6072eb.tar.xz nova-4d1271821f782d4e11934d69b4ffe3aced6072eb.zip | |
PEP8 fix.
Diffstat (limited to 'nova/auth')
| -rw-r--r-- | nova/auth/ldapdriver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/auth/ldapdriver.py b/nova/auth/ldapdriver.py index e26a360af..95e31ae3b 100644 --- a/nova/auth/ldapdriver.py +++ b/nova/auth/ldapdriver.py @@ -125,7 +125,8 @@ class LdapDriver(object): self.__cache = None if LdapDriver.conn is None: LdapDriver.conn = self.ldap.initialize(FLAGS.ldap_url) - LdapDriver.conn.simple_bind_s(FLAGS.ldap_user_dn, FLAGS.ldap_password) + LdapDriver.conn.simple_bind_s(FLAGS.ldap_user_dn, + FLAGS.ldap_password) if LdapDriver.mc is None: LdapDriver.mc = memcache.Client(FLAGS.memcached_servers, debug=0) |
