diff options
author | William Holland <william.holland@codethink.co.uk> | 2015-05-30 19:27:10 +0100 |
---|---|---|
committer | William Holland <william.holland@codethink.co.uk> | 2015-05-30 19:27:10 +0100 |
commit | de73045758d138d4dd6227fa9ee43562087fa96f (patch) | |
tree | 3783f9c9a59545203e87c48b3a569856ab8eb26c /keyboardpython | |
parent | afec4b60bfda22c22d71c1e9f26b2d19930ad208 (diff) | |
download | keyboard-python-de73045758d138d4dd6227fa9ee43562087fa96f.tar.bz2 |
Update parse_code help
Diffstat (limited to 'keyboardpython')
-rw-r--r-- | keyboardpython/key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboardpython/key.py b/keyboardpython/key.py index 8795cd4..e7ec36c 100644 --- a/keyboardpython/key.py +++ b/keyboardpython/key.py @@ -186,7 +186,7 @@ def match_start_in_table(_code,table): return _code,key_comb def parse_code(code): - ''' get Key object from code ''' + ''' get KeyCombination object from code ''' _assert_type(code,str) to_return = KeyCombination() _code = list(code) |