diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-04 21:10:10 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-04 21:10:10 +0000 |
commit | 887c337496018e10055ab32a6ce09b3ad37c5380 (patch) | |
tree | 75d93988d61d1e1882ce284f5849ec9532c003e6 /iw | |
parent | b1f2dd76d8f2e393347d7a0ce02e0eda89679833 (diff) | |
download | anaconda-887c337496018e10055ab32a6ce09b3ad37c5380.tar.gz anaconda-887c337496018e10055ab32a6ce09b3ad37c5380.tar.xz anaconda-887c337496018e10055ab32a6ce09b3ad37c5380.zip |
I don't like the number '0'
Diffstat (limited to 'iw')
-rw-r--r-- | iw/progress_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py index 80576cc76..7d202e0c0 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -76,7 +76,7 @@ class InstallProgressWindow (InstallWindow): # check to see if we've started yet if (self.timeStarted == -1): self.timeStarted = time.time () - elapsedTime = 0 + elapsedTime = 1 else: elapsedTime = time.time() - self.timeStarted |