use tenantName for NOVA_PROJECT_ID
diff --git a/exercise.sh b/exercise.sh
index 7f7be49..a1cf025 100755
--- a/exercise.sh
+++ b/exercise.sh
@@ -24,8 +24,9 @@
 # Nova original used project_id as the *account* that owned resources (servers,
 # ip address, ...)   With the addition of Keystone we have standardized on the
 # term **tenant** as the entity that owns the resources.  **novaclient** still
-# uses the old deprecated terms project_id.
-export NOVA_PROJECT_ID=${TENANT:-2}
+# uses the old deprecated terms project_id.  Note that this field should now be
+# set to tenant_name, not tenant_id.
+export NOVA_PROJECT_ID=${TENANT:-demo}
 
 # In addition to the owning entity (tenant), nova stores the entity performing
 # the action as the **user**.