This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] list-fixed-bugs.py: Wrap at 72 chars
- From: Siddhesh Poyarekar <siddhesh at sourceware dot org>
- To: libc-alpha at sourceware dot org
- Date: Sat, 1 Feb 2020 19:20:09 +0530
- Subject: [PATCH] list-fixed-bugs.py: Wrap at 72 chars
Wrap the bug list output at 72 chars to make it easy to paste into
emails.
---
scripts/list-fixed-bugs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/list-fixed-bugs.py b/scripts/list-fixed-bugs.py
index e83af23b0b..5255817fbd 100755
--- a/scripts/list-fixed-bugs.py
+++ b/scripts/list-fixed-bugs.py
@@ -48,7 +48,7 @@ def list_fixed_bugs(version):
data = json.loads(json_data)
for bug in data['bugs']:
desc = '[%d] %s: %s' % (bug['id'], bug['component'], bug['summary'])
- desc = textwrap.fill(desc, width=76, initial_indent=' ',
+ desc = textwrap.fill(desc, width=72, initial_indent=' ',
subsequent_indent=' ') + '\n'
sys.stdout.buffer.write(desc.encode('utf-8'))
--
2.24.1