Commit b8cb0b3
committed
backend_qt5.py Don't use six.u
This code already does from __future__ import unicode_literal.
Thus '+' will be a unicode string even in python 2 and there is no
need for converting it into a unicode string. Infact this results in
a TypeError because six.u assumes the input string to be ASCII only.
See http://pythonhosted.org/six/#six.u1 parent 59ff34d commit b8cb0b3
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
381 | 381 | | |
382 | 382 | | |
383 | 383 | | |
384 | | - | |
| 384 | + | |
385 | 385 | | |
386 | 386 | | |
387 | 387 | | |
| |||
0 commit comments