diff options
author | Mike Fulbright <msf@redhat.com> | 2001-02-08 19:32:01 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-02-08 19:32:01 +0000 |
commit | dba567dea4d9b08de2abec0235c659d79b8498e4 (patch) | |
tree | 8b3b68e3adab3b92230f6e45d397551cdf3a4985 /text.py | |
parent | 2852388145742dab6ed38b80754250271b88997f (diff) | |
download | anaconda-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |