Increase Plugin Name column width by 10 in devstack plugins list

Change-Id: I62b1dca87ca8df4335a062caaf5e6a3e76e9101a
This commit is contained in:
Clint Adams 2016-03-01 18:12:48 -05:00
parent a9bc5cb60e
commit bb40df5714
2 changed files with 6 additions and 6 deletions

View File

@ -14,6 +14,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 |
+----------------------------+-------------------------------------------------------------------------+

View File

@ -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