Joey Boggs has uploaded a new change for review. Change subject: edit-node: correctly display installed plugins ......................................................................
edit-node: correctly display installed plugins rhbz#1016985 Bug-Url:https://bugzilla.redhat.com/show_bug.cgi?id=1016985 Change-Id: I28b62112e6228829bd6bb6bfbd5a37971ddd2183 Signed-off-by: Joey Boggs <[email protected]> --- M tools/edit-node 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/28/20028/1 diff --git a/tools/edit-node b/tools/edit-node index 7a78f2f..7eb5794 100755 --- a/tools/edit-node +++ b/tools/edit-node @@ -734,7 +734,8 @@ if os.path.exists(plugin_info_dir): print "\nInstalled Plugins:\n" for p in os.listdir(plugin_info_dir): - print "%s\n" % p + if not len(os.path.splitext(p)[1]): + print "%s\n" % p return True def _create_manifests(self, options): -- To view, visit http://gerrit.ovirt.org/20028 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I28b62112e6228829bd6bb6bfbd5a37971ddd2183 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Joey Boggs <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
