diff options
Diffstat (limited to 'ipaserver/install/service.py')
-rw-r--r-- | ipaserver/install/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py index 281981d1..80a9a51f 100644 --- a/ipaserver/install/service.py +++ b/ipaserver/install/service.py @@ -297,7 +297,7 @@ class Service: try: conn.add_s(entry) - except ldap.ALREADY_EXISTS: + except ldap.ALREADY_EXISTS, e: logging.critical("failed to add %s Service startup entry" % name) raise e |