Skip to content

Commit

Permalink
Merge pull request #3036 from tacaswell/unicode_fix
Browse files Browse the repository at this point in the history
Unicode fixes
  • Loading branch information
efiring committed May 3, 2014
2 parents ab3aa58 + 96d5473 commit 235a761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_qt4.py
Expand Up @@ -371,7 +371,7 @@ def _get_key(self, event):
key = key.lower()

mods.reverse()
return u'+'.join(mods + [key])
return '+'.join(mods + [key])

def new_timer(self, *args, **kwargs):
"""
Expand Down

0 comments on commit 235a761

Please sign in to comment.