aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscarabeus <scarabeus@gentoo.org>2010-11-02 13:53:19 +0000
committerscarabeus <scarabeus@gentoo.org>2010-11-02 13:53:19 +0000
commitde49cc90a8bebe5231ba9b143e888ffcf20ff4ad (patch)
treebb0d3743df495fa687937a19e6c10b214f6b1714 /pym/gentoolkit/eshowkw/display_pretty.py
parentExtend PORTDIR_OVERLAY rather than overriding it to not create warnings. (diff)
downloadgentoolkit-de49cc90a8bebe5231ba9b143e888ffcf20ff4ad.tar.gz
gentoolkit-de49cc90a8bebe5231ba9b143e888ffcf20ff4ad.tar.bz2
gentoolkit-de49cc90a8bebe5231ba9b143e888ffcf20ff4ad.zip
Fix error on rotate content and py3 compat.
svn path=/trunk/gentoolkit/; revision=842
Diffstat (limited to 'pym/gentoolkit/eshowkw/display_pretty.py')
-rw-r--r--pym/gentoolkit/eshowkw/display_pretty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/eshowkw/display_pretty.py b/pym/gentoolkit/eshowkw/display_pretty.py
index f3c52ff..2bd5426 100644
--- a/pym/gentoolkit/eshowkw/display_pretty.py
+++ b/pym/gentoolkit/eshowkw/display_pretty.py
@@ -21,7 +21,7 @@ def display(plain_list, rotated_list, plain_width, rotated_height, cp, toplist =
if toplist == 'archlist':
data_printout.extend(plain_list)
output.extend(data_printout)
- print print_content(output)
+ print(print_content(output))
def align_string(string, align, length):
"""Align string to the specified alignment (left or right, and after rotation it becames top and bottom)"""