Skip to content

Commit 96d5473

Browse files
committed
BUG : removed unicode string marker for backend_qt4
- no longer needed due to import string literal - close matplotlib#3028
1 parent 0fa7771 commit 96d5473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt4.py

Lines changed: 1 addition & 1 deletion
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)