diff options
| author | Chris Lumens <clumens@redhat.com> | 2011-03-03 11:04:03 -0500 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2011-03-03 12:01:02 -0500 |
| commit | 42caa17db379cd6d366c02931ba188da5728867e (patch) | |
| tree | 8bbf0e1862aa07aea7b9abb01cc5ebde8c3c8ae6 | |
| parent | 613b98db9003e7630568ed009ee3f8357e35060b (diff) | |
| download | anaconda-42caa17db379cd6d366c02931ba188da5728867e.tar.gz anaconda-42caa17db379cd6d366c02931ba188da5728867e.tar.xz anaconda-42caa17db379cd6d366c02931ba188da5728867e.zip | |
Give an indication how many packages are left in cmdline mode (#681614).
| -rw-r--r-- | pyanaconda/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/cmdline.py b/pyanaconda/cmdline.py index 2ca34f936..4a89e61aa 100644 --- a/pyanaconda/cmdline.py +++ b/pyanaconda/cmdline.py @@ -199,7 +199,7 @@ class progressDisplay: def set_fraction(self, pct): self.pct = pct def set_text(self, txt): - pass + print(txt) def set_label(self, txt): stripped = strip_markup(txt) if stripped != self.display: |
