]> jfr.im git - z_archive/twitter.git/commitdiff
Corrections to width numbers.
authorKit La Touche <redacted>
Thu, 13 Jun 2013 03:50:42 +0000 (21:50 -0600)
committerKit La Touche <redacted>
Fri, 21 Mar 2014 16:34:43 +0000 (10:34 -0600)
twitter/util.py

index 7e4d6ab3f891aa70cdd818ace8b0b33c49c615e8..3d9a4bb514dbb1188692139d67d3ea51b2e36c2e 100644 (file)
@@ -136,7 +136,7 @@ def parse_host_list(list_of_hosts):
     return p
 
 
-def align_text(text, left_margin=16, max_width=80):
+def align_text(text, left_margin=17, max_width=160):
     lines = []
     for line in text.split('\n'):
         temp_lines = textwrap.wrap(line, max_width - left_margin)