diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-30 19:52:25 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-30 19:52:25 +0000 |
commit | 9f1d2609ebe2c2079628284907c4366af9971266 (patch) | |
tree | 6237a635f7bcf83af72e77ebf64a6180b7440b21 /textw | |
parent | 9eddcec189502641461a39270ca0f0f0d8858fe5 (diff) | |
download | anaconda-9f1d2609ebe2c2079628284907c4366af9971266.tar.gz anaconda-9f1d2609ebe2c2079628284907c4366af9971266.tar.xz anaconda-9f1d2609ebe2c2079628284907c4366af9971266.zip |
fix justification (#106055)
Diffstat (limited to 'textw')
-rw-r--r-- | textw/progress_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/progress_text.py b/textw/progress_text.py index f5fed606c..977405cb5 100644 --- a/textw/progress_text.py +++ b/textw/progress_text.py @@ -145,7 +145,7 @@ class InstallProgressWindow: # grid code gets unhappy overall.setField (Label (" " * 19), 0, 0, anchorLeft = 1) overall.setField (Label (_(" Packages")), 1, 0, anchorLeft = 1) - overall.setField (Label (_(" Bytes")), 2, 0, anchorLeft = 1) + overall.setField (Label (_(" Bytes")), 2, 0, anchorLeft = 1) overall.setField (Label (_(" Time")), 3, 0, anchorLeft = 1) overall.setField (Label (_("Total :")), 0, 1, anchorLeft = 1) |