diff --git a/data/devstack-plugins-registry.header b/data/devstack-plugins-registry.header index c46ed97ab5..46d5e60749 100644 --- a/data/devstack-plugins-registry.header +++ b/data/devstack-plugins-registry.header @@ -19,6 +19,6 @@ The following are plugins that a script has found in the openstack/ namespace, which includes but is not limited to official OpenStack projects. -+------------------+-------------------------------------------------------------------------+ -|Plugin Name |URL | -+------------------+-------------------------------------------------------------------------+ ++----------------------------+-------------------------------------------------------------------------+ +|Plugin Name |URL | ++----------------------------+-------------------------------------------------------------------------+ diff --git a/tools/generate-devstack-plugins-list.sh b/tools/generate-devstack-plugins-list.sh index b7817a0096..8a1f743b27 100644 --- a/tools/generate-devstack-plugins-list.sh +++ b/tools/generate-devstack-plugins-list.sh @@ -46,10 +46,10 @@ test -r data/devstack-plugins-registry.header && cat data/devstack-plugins-regis sorted_plugins=$(python tools/generate-devstack-plugins-list.py) for k in ${sorted_plugins}; do - project=${k:0:18} + project=${k:0:28} giturl="git://git.openstack.org/openstack/${k:0:26}" - printf "|%-18s|%-73s|\n" "${project}" "${giturl}" - printf "+------------------+-------------------------------------------------------------------------+\n" + printf "|%-28s|%-73s|\n" "${project}" "${giturl}" + printf "+----------------------------+-------------------------------------------------------------------------+\n" done test -r data/devstack-plugins-registry.footer && cat data/devstack-plugins-registry.footer