Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5cefa83

Browse files
committed
Merge pull request matplotlib#3357 from jenshnielsen/qt4_unicode
backend_qt5.py Don't use six.u
2 parents 59ff34d + b8cb0b3 commit 5cefa83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def _get_key(self, event):
381381
key = key.lower()
382382

383383
mods.reverse()
384-
return six.u('+').join(mods + [key])
384+
return '+'.join(mods + [key])
385385

386386
def new_timer(self, *args, **kwargs):
387387
"""

0 commit comments

Comments
 (0)