aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mm3mod/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm3mod/__init__.py b/mm3mod/__init__.py
index f5f3b86..588de88 100644
--- a/mm3mod/__init__.py
+++ b/mm3mod/__init__.py
@@ -25,7 +25,7 @@ class ModShell(cmd2.Cmd):
self.held_messages = self.mlist.get_held_page (50,1)
print ()
for msg in self.held_messages:
- print(msg.request_id, msg.subject, msg.sender)
+ print('{:<5d} {:75.75s} {:<25.25s}'.format(msg.request_id, msg.subject, msg.sender))
print ()
def matching_request_ids(self,text):