diff options
Diffstat (limited to 'gkeys-ldap')
-rw-r--r-- | gkeys-ldap/gkeyldap/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gkeys-ldap/gkeyldap/actions.py b/gkeys-ldap/gkeyldap/actions.py index 7e951e0..9558ed0 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -206,7 +206,7 @@ class Actions(object): keyid_found = True elif values and attr in ['fingerprint']: values = [v.replace(' ', '') for v in values] - if 'undefined' in values: + if 'undefined' in values and attr not in ['keyid', 'longkeyid']: self.logger.error('ERROR in LDAP info for: %s, %s' % (info['uid'][0], info['cn'][0])) self.logger.error(' %s = "undefined"' % (field)) |