diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-01 11:50:27 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-01 11:50:27 -0400 |
commit | 20f4a52399c5c1ee87ae57b9f082113663b20060 (patch) | |
tree | c1a41b10ceb16b77e7c6460a9c0d6df420cfcadc /cmd2/parsing.py | |
parent | 06163734b94b71ce52938f27b5718bd66357553a (diff) | |
download | cmd2-git-20f4a52399c5c1ee87ae57b9f082113663b20060.tar.gz |
Fixed spelling
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r-- | cmd2/parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py index 875e54c9..b98f630d 100644 --- a/cmd2/parsing.py +++ b/cmd2/parsing.py @@ -453,7 +453,7 @@ class StatementParser: # no trailing whitespace args = line[match.end(2):].rstrip() # if the command is none that means the input was either empty - # or something wierd like '>'. args should be None if we couldn't + # or something weird like '>'. args should be None if we couldn't # parse a command if not command or not args: args = None |