Skip to content

Commit 235a761

Browse files
committed
Merge pull request matplotlib#3036 from tacaswell/unicode_fix
Unicode fixes
2 parents ab3aa58 + 96d5473 commit 235a761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt4.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def _get_key(self, event):
371371
key = key.lower()
372372

373373
mods.reverse()
374-
return u'+'.join(mods + [key])
374+
return '+'.join(mods + [key])
375375

376376
def new_timer(self, *args, **kwargs):
377377
"""

0 commit comments

Comments
 (0)