diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-12-27 19:04:33 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-12-27 19:04:33 +0100 |
commit | 8190bfb90b272cb98fed05dfdb6d2398c2c20a80 (patch) | |
tree | e345f9ebd606e55b9aa5ea0c58afe41a2dd49fd7 /pynslcd/netgroup.py | |
parent | 2853f887a372a0a46285f498157d38367ade9739 (diff) |
PEP8 fixes
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1573 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pynslcd/netgroup.py')
-rw-r--r-- | pynslcd/netgroup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pynslcd/netgroup.py b/pynslcd/netgroup.py index 2b3a45f..b24d296 100644 --- a/pynslcd/netgroup.py +++ b/pynslcd/netgroup.py @@ -47,7 +47,7 @@ class NetgroupRequest(common.Request): for triple in attributes['nisNetgroupTriple']: m = _netgroup_triple_re.match(triple) if not m: - print 'Warning: entry %s contains invalid %s value: %r' % ( dn, attmap['nisNetgroupTriple'], triple) + print 'Warning: entry %s contains invalid %s value: %r' % (dn, attmap['nisNetgroupTriple'], triple) else: self.fp.write_int32(constants.NSLCD_RESULT_BEGIN) self.fp.write_int32(constants.NSLCD_NETGROUP_TYPE_TRIPLE) |