Browse code

Fix typo in error message printed if ran under virtualenv

Commit title says it all. I don't know how you feel about these kind
of commits, I feel like it's a waste of resources but I also feel bad
when I see big/obvious typo.

Change-Id: If048bb2dbad1a0b5a13e56b5fa1e6ea7c01eb05e

Jordan Pittier authored on 2015/11/12 19:03:20
Showing 1 changed files
... ...
@@ -99,10 +99,10 @@ fi
99 99
 # this explicit as it has come up on the mailing list.
100 100
 if [[ -n "$VIRTUAL_ENV" ]]; then
101 101
     echo "You appear to be running under a python virtualenv."
102
-    echo "DevStack does not support this, as we my break the"
102
+    echo "DevStack does not support this, as we may break the"
103 103
     echo "virtualenv you are currently in by modifying "
104 104
     echo "external system-level components the virtualenv relies on."
105
-    echo "We reccommend you use a separate virtual-machine if "
105
+    echo "We recommend you use a separate virtual-machine if "
106 106
     echo "you are worried about DevStack taking over your system."
107 107
     exit 1
108 108
 fi