try to avoid any spurious Unicode items
This commit is contained in:
parent
b7efdf6a33
commit
7b3065439a
1 changed files with 1 additions and 0 deletions
|
@ -58,6 +58,7 @@ class ExternalEditorView(object):
|
||||||
r.append('cookie:' + cookie)
|
r.append('cookie:' + cookie)
|
||||||
r.append('')
|
r.append('')
|
||||||
r.append(fromUnicode(data))
|
r.append(fromUnicode(data))
|
||||||
|
r = [str(item) for item in r]
|
||||||
result = '\n'.join(r)
|
result = '\n'.join(r)
|
||||||
self.setHeaders(len(result))
|
self.setHeaders(len(result))
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Add table
Reference in a new issue