Skip to content
Snippets Groups Projects
Verified Commit f8fe629b authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Revert "Be less strict when word-wrapping."

This reverts commit f176d7dc.
parent f176d7dc
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ def form_to_text_table(form, width=74, sep=' | '):
res = []
for label, value in output_list:
# Wrap value to lines
lines = wrap(value, max_value, break_long_words=False, replace_whitespace=False)
lines = wrap(value, max_value)
if lines:
# Output first line with label name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment