Skip to content

Commit

Permalink
Fix for #245
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchassassin authored Feb 24, 2019
1 parent 8762cee commit 1a6982e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboard/_canonical_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'ctrll lock': 'caps lock',
'capslock': 'caps lock',
'number lock': 'num lock',
'numlock:': 'num lock',
'numlock': 'num lock',
'space bar': 'space',
'spacebar': 'space',
'linefeed': 'enter',
Expand Down Expand Up @@ -1243,4 +1243,4 @@ def normalize_name(name):
if name != '_' and '_' in name:
name = name.replace('_', ' ')

return canonical_names.get(name, name)
return canonical_names.get(name, name)

0 comments on commit 1a6982e

Please sign in to comment.