summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-02-08 19:32:01 +0000
committerMike Fulbright <msf@redhat.com>2001-02-08 19:32:01 +0000
commitdba567dea4d9b08de2abec0235c659d79b8498e4 (patch)
tree8b3b68e3adab3b92230f6e45d397551cdf3a4985 /text.py
parent2852388145742dab6ed38b80754250271b88997f (diff)
downloadanaconda-dba567dea4d9b08de2abec0235c659d79b8498e4.tar.gz
anaconda-dba567dea4d9b08de2abec0235c659d79b8498e4.tar.xz
anaconda-dba567dea4d9b08de2abec0235c659d79b8498e4.zip
fix way we print elapsed time
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 9e2d3fcdc..2df426d44 100644
--- a/text.py
+++ b/text.py
@@ -675,7 +675,7 @@ class InstallProgressWindow:
amt = amt % 60
secs = amt
- return "%01d:%02d.%02d" % (int(hours) ,int(min), int(secs))
+ return "%01d:%02d:%02d" % (int(hours) ,int(min), int(secs))
self.numComplete = self.numComplete + 1
self.sizeComplete = self.sizeComplete + (header[rpm.RPMTAG_SIZE] / 1024)