diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-11-23 17:16:05 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-11-23 00:21:03 -0500 |
commit | fbdeda1da0349792ebde6e1756b0652832a67018 (patch) | |
tree | 002b982851b73f215cce28f216854f9678cca245 /ipaserver/install/upgradeinstance.py | |
parent | 2f4b3972a04e3ebf99ea7fd51c2b102cc8342582 (diff) | |
download | freeipa-fbdeda1da0349792ebde6e1756b0652832a67018.tar.gz freeipa-fbdeda1da0349792ebde6e1756b0652832a67018.tar.xz freeipa-fbdeda1da0349792ebde6e1756b0652832a67018.zip |
Fix some issues introduced when rebasing update patch
Diffstat (limited to 'ipaserver/install/upgradeinstance.py')
-rw-r--r-- | ipaserver/install/upgradeinstance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/upgradeinstance.py b/ipaserver/install/upgradeinstance.py index 0913fdb45..b04d92afc 100644 --- a/ipaserver/install/upgradeinstance.py +++ b/ipaserver/install/upgradeinstance.py @@ -106,7 +106,7 @@ class IPAUpgrade(service.Service): self.files = ld.get_all_files(ldapupdate.UPDATES_DIR) self.modified = ld.update(self.files) except ldapupdate.BadSyntax, e: - logging.error('Bad syntax in upgrade %s' % str(e)) + root_logger.error('Bad syntax in upgrade %s' % str(e)) self.modified = False self.badsyntax = True except Exception, e: |