Merge "Increase Plugin Name column width by 10 in devstack plugins list"
diff --git a/data/devstack-plugins-registry.header b/data/devstack-plugins-registry.header
index c46ed97..46d5e60 100644
--- a/data/devstack-plugins-registry.header
+++ b/data/devstack-plugins-registry.header
@@ -19,6 +19,6 @@
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 b7817a0..8a1f743 100644
--- a/tools/generate-devstack-plugins-list.sh
+++ b/tools/generate-devstack-plugins-list.sh
@@ -46,10 +46,10 @@
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