summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-02-12 00:38:21 +0000
committerMike Fulbright <msf@redhat.com>2003-02-12 00:38:21 +0000
commitc04604c324db8e3b498b8c9afe3a4aa944f74fd3 (patch)
treeabfc1fb5d46e59c2df723830f55e5fbd119ea1d2
parentdbac6a111bdbed0fd2020d18f2d86a8d0acd859a (diff)
downloadanaconda-c04604c324db8e3b498b8c9afe3a4aa944f74fd3.tar.gz
anaconda-c04604c324db8e3b498b8c9afe3a4aa944f74fd3.tar.xz
anaconda-c04604c324db8e3b498b8c9afe3a4aa944f74fd3.zip
using wrong log function
-rw-r--r--upgrade.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/upgrade.py b/upgrade.py
index 7095373cf..6dc5ad27c 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -3,7 +3,7 @@
#
# Matt Wilson <msw@redhat.com>
#
-# Copyright 2001-2002 Red Hat, Inc.
+# Copyright 2001-2003 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
@@ -456,7 +456,7 @@ def upgradeFindPackages(intf, method, id, instPath, dir):
try:
resetRpmdb(id.dbpath)
except Exception, e:
- logMessage("error returning rpmdb to old state: %s" %(e,))
+ log("error returning rpmdb to old state: %s" %(e,))
pass
sys.exit(0)
@@ -473,7 +473,7 @@ def upgradeFindPackages(intf, method, id, instPath, dir):
try:
resetRpmdb(id.dbpath)
except Exception, e:
- logMessage("error returning rpmdb to old state: %s" %(e,))
+ log("error returning rpmdb to old state: %s" %(e,))
pass
sys.exit(0)
@@ -514,7 +514,7 @@ def upgradeFindPackages(intf, method, id, instPath, dir):
try:
resetRpmdb(id.dbpath)
except Exception, e:
- logMessage("error returning rpmdb to old state: %s" %(e,))
+ log("error returning rpmdb to old state: %s" %(e,))
pass
sys.exit(0)