summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--backend.py4
-rw-r--r--yuminstall.py7
3 files changed, 8 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index d1aceb7cc..e9707d753 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-22 Paul Nasrat <pnasrat@redhat.com>
+
+ * yuminstall.py, backend.py: Display full NEVRA in log (#189308)
+
2006-05-19 David Cantrell <dcantrell@redhat.com>
* anaconda.spec: Bump version.
diff --git a/backend.py b/backend.py
index c379a7709..24d59f32a 100644
--- a/backend.py
+++ b/backend.py
@@ -94,9 +94,9 @@ class AnacondaBackend:
syslogname = None
if upgrade:
- self.modeText = _("Upgrading %s-%s-%s.%s.\n")
+ self.modeText = _("Upgrading %s\n")
else:
- self.modeText = _("Installing %s-%s-%s.%s.\n")
+ self.modeText = _("Installing %s\n")
def kernelVersionList(self):
pass
diff --git a/yuminstall.py b/yuminstall.py
index e10c5f2d5..510cbd0f8 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -128,13 +128,10 @@ class simpleCallback:
self.progress.setPackage(hdr)
self.progress.setPackageScale(0, 1)
- self.instLog.write(self.modeText % (po.returnSimple('name'),
- po.returnSimple('version'),
- po.returnSimple('release'),
- po.returnSimple('arch')))
+ nvra = po.returnNevraPrintable()
+ self.instLog.write(self.modeText % (nvra,))
self.instLog.flush()
- nvra = po.returnNevraPrintable()
self.files[nvra] = None
self.size = po.returnSimple('installedsize')