From 9274861942bb7d72172e16ba2ae1471ea68df714 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Wed, 9 Mar 2016 15:31:55 -0800 Subject: [PATCH] Fix keystone-manage example command path Whether the user is using tox or has installed keystone globally, the keystone-manage command should already be in their path. The keystone repo doesn't have a bin/ directory so trying to call bin/keystone-manage from the root of the repo will result in an error. Moreover, other references to keystone-manage in this page do not specify a path. This patch fixes the instruction and makes it consistent with the rest of the document. Change-Id: I93f1aca9bdef0fa3ef4937ef616157d1e1b6fbe9 --- doc/source/developing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/developing.rst b/doc/source/developing.rst index f20e333597..d49d1e148f 100644 --- a/doc/source/developing.rst +++ b/doc/source/developing.rst @@ -71,7 +71,7 @@ place: .. code-block:: bash - $ bin/keystone-manage db_sync + $ keystone-manage db_sync .. _`python-keystoneclient`: https://git.openstack.org/cgit/openstack/python-keystoneclient .. _`openstackclient`: https://git.openstack.org/cgit/openstack/python-openstackclient