Skip to content

Commit

Permalink
Remove breaking character
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 authored Feb 4, 2021
1 parent b91f0d9 commit ec5680c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/venv-manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def delete_environment() -> int:
logger.info(f"Successfully deleted virtual environment {VENV_NAME} at {VENV_DIR}")
return 0
else:
logger.error(f"Failed to delete virtual environment {VENV_NAME} at {VENV_DIR}. Exiting")
logger.error(f"Failed to delete virtual environment {VENV_NAME} at {VENV_DIR}. Exiting")
exit(70)


Expand Down Expand Up @@ -516,4 +516,4 @@ def reset_environment() -> int:
elif action == "reset":
exit(reset_environment())
else:
logger.critical(f'Invalid argument {action}')
logger.critical(f'Invalid argument {action}')

0 comments on commit ec5680c

Please sign in to comment.