Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 566504
Collapse All | Expand All

(-)textwrap_.py.orig (-1 / +1 lines)
Lines 92-98 Link Here
92
			# Convert current line back to a string and store it in list
92
			# Convert current line back to a string and store it in list
93
			# of all lines (return value).
93
			# of all lines (return value).
94
			if cur_line:
94
			if cur_line:
95
				lines.append(indent + ''.join(cur_line))
95
				lines.append(indent + ''.join(str(c).decode('utf-8') for c in cur_line))
96
96
97
		return lines
97
		return lines
98
98

Return to bug 566504