Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
theacodes committed Oct 13, 2018
1 parent 908d82f commit 1646e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nox/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ def run(
if is_external_tool:
if external == "error":
logger.error(
"Error: {} is not installed into the virtualenv, it located at {}. "
"Error: {} is not installed into the virtualenv, it is located at {}. "
"Pass external=True into run() to explicitly allow this.".format(
cmd, cmd_path
)
)
raise CommandFailed("External program disallowed.")
elif external is False:
logger.warning(
"Warning: {} is not installed into the virtualenv, it located at {}. This might cause issues! "
"Warning: {} is not installed into the virtualenv, is it located at {}. This might cause issues! "
"Pass external=True into run() to silence this message.".format(
cmd, cmd_path
)
Expand Down

0 comments on commit 1646e52

Please sign in to comment.