summaryrefslogtreecommitdiff
path: root/cmd2/parsing.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-15 16:27:29 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-15 16:27:29 -0400
commitf77c44dd79b484f96a3077fd7ca64fd5b3c35fa1 (patch)
treeeebade8f826a972c2a9ea167db7248581c708257 /cmd2/parsing.py
parentd68b3feb3095ec717655972c5e4dc89d7c1ed579 (diff)
downloadcmd2-git-f77c44dd79b484f96a3077fd7ca64fd5b3c35fa1.tar.gz
Fixed a few comments where "redirecting" accidentally got changed to "_redirecting"
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r--cmd2/parsing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py
index a89f6e5e..f705128c 100644
--- a/cmd2/parsing.py
+++ b/cmd2/parsing.py
@@ -494,7 +494,7 @@ class StatementParser:
output = constants.REDIRECTION_APPEND
output_index = append_index
- # Check if we are _redirecting to a file
+ # Check if we are redirecting to a file
if len(tokens) > output_index + 1:
unquoted_path = utils.strip_quotes(tokens[output_index + 1])
if unquoted_path: