summaryrefslogtreecommitdiffstats
path: root/qtip/reporter/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/reporter/filters.py')
-rw-r--r--qtip/reporter/filters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtip/reporter/filters.py b/qtip/reporter/filters.py
index dc46e195..c0c379df 100644
--- a/qtip/reporter/filters.py
+++ b/qtip/reporter/filters.py
@@ -8,7 +8,7 @@
##############################################################################
-def justify(pair, width=100, padding_with='.'):
+def justify(pair, width=80, padding_with='.'):
"""align first element along the left margin, second along the right, padding spaces"""
n = width - len(pair[0])
return '{key}{value:{c}>{n}}'.format(key=pair[0], value=pair[1], c=padding_with, n=n)