summaryrefslogtreecommitdiffstats
path: root/pym/portage/output.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-07-22 15:05:53 -0700
committerZac Medico <zmedico@gentoo.org>2012-07-22 15:05:53 -0700
commit8f9ba227869775cf7f35037283e88e4cee047703 (patch)
tree2056a00aecd909c4d2277bf7a70a773babce1249 /pym/portage/output.py
parentb5f4e8956e5b790d5bfcb14b3d9aabe46347e716 (diff)
downloadportage-8f9ba227869775cf7f35037283e88e4cee047703.tar.gz
portage-8f9ba227869775cf7f35037283e88e4cee047703.tar.bz2
portage-8f9ba227869775cf7f35037283e88e4cee047703.zip
TermProgressBar: fix broken ref to "image" var
Broken since commit 0623e44a500125064525413404948af9179747a9.
Diffstat (limited to 'pym/portage/output.py')
-rw-r--r--pym/portage/output.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py
index c6a7031d0..07e25af7a 100644
--- a/pym/portage/output.py
+++ b/pym/portage/output.py
@@ -744,7 +744,7 @@ class TermProgressBar(ProgressBar):
max_bar_width = bar_space-3
_percent = "".ljust(percentage_str_width)
if cols < min_columns:
- return image
+ return ""
if position <= 0.5:
offset = 2 * position
else: