Show More
@@ -549,7 +549,7 b' def formatblock(block, width):' | |||
|
549 | 549 | elif block['type'] == 'option': |
|
550 | 550 | return formatoption(block, width) |
|
551 | 551 | |
|
552 |
text = ' '.join(map( |
|
|
552 | text = ' '.join(map(bytes.strip, block['lines'])) | |
|
553 | 553 | return util.wrap(text, width=width, |
|
554 | 554 | initindent=indent, |
|
555 | 555 | hangindent=subindent) + '\n' |
General Comments 0
You need to be logged in to leave comments.
Login now