aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/gentoolkit/eshowkw')
-rw-r--r--pym/gentoolkit/eshowkw/__init__.py2
-rw-r--r--pym/gentoolkit/eshowkw/display_pretty.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pym/gentoolkit/eshowkw/__init__.py b/pym/gentoolkit/eshowkw/__init__.py
index 6bb4e54..39da052 100644
--- a/pym/gentoolkit/eshowkw/__init__.py
+++ b/pym/gentoolkit/eshowkw/__init__.py
@@ -38,7 +38,7 @@ def process_display(package, keywords, dbapi):
header_length = portdata.version_length
content_length = keywords.length
else:
- header = string_rotator().rotateContent(portdata.content, portdata.content_length, order, bold)
+ header = string_rotator().rotateContent(portdata.content, portdata.content_length, bold)
content = keywords.content
sep = [''.ljust(keywords.length) for x in range(portdata.slot_length-1)]
content.extend(sep)
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)"""