Skip to content

Commit c089404

Browse files
author
Juliya Smith
authored
Print instead of double error (#89)
1 parent 3532dc0 commit c089404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/code42cli/invoker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def _try_run_command(self, command, path_parts, input_args):
9999
logger.print_and_log_error(u"{}".format(err))
100100
possible_correct_words = self._find_incorrect_word_match(err, path_parts)
101101
if possible_correct_words:
102-
logger.print_and_log_error(u"Did you mean one of the following?")
102+
logger.print_info(u"Did you mean one of the following?")
103103
for possible_correct_word in possible_correct_words:
104104
logger.print_info(u" {}".format(possible_correct_word))
105105

0 commit comments

Comments
 (0)