aboutsummaryrefslogtreecommitdiffstats
path: root/tools/html2text.py
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-03-19 15:27:18 -0700
committerGerald Combs <gerald@wireshark.org>2018-03-20 15:46:08 +0000
commit4bff0e6dd15bfaaad37a39f857cc5e2b0e07d8cf (patch)
tree17e4c20706b86f5c41000a75c0d78a1458a2c8f3 /tools/html2text.py
parent9c30b80f467d3be36d1bd22f6f8dc3950501e434 (diff)
html2text: Wrap at 72 characters.
Change-Id: Id8c9d74b71cabce6bbfb25fd857f71c4b2a4e8ea Reviewed-on: https://code.wireshark.org/review/26556 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'tools/html2text.py')
-rwxr-xr-xtools/html2text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/html2text.py b/tools/html2text.py
index 22eb84d112..accd98a2ae 100755
--- a/tools/html2text.py
+++ b/tools/html2text.py
@@ -64,7 +64,7 @@ class TextHTMLParser(HTMLParser):
initial_indent += self.list_item_prefix
indent += ' '
kwargs = {
- 'width': 66,
+ 'width': 72,
'initial_indent': initial_indent,
'subsequent_indent': indent
}