summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-09-03 15:02:23 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-09-03 15:02:23 +0000
commitddbcaa275c5f41f19d5665f0c52de1f9edcb4689 (patch)
tree075f3475d2371ed9a6edba1c4decf8e12fad33c0
parent6fa4feccd5953a16dcf78f4c2bb3eca8040114ba (diff)
updating docs build
Original commit message from CVS: updating docs build
-rw-r--r--gst-xmlinspect.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst-xmlinspect.py b/gst-xmlinspect.py
index 6fa85af..c835980 100644
--- a/gst-xmlinspect.py
+++ b/gst-xmlinspect.py
@@ -63,12 +63,14 @@ def output_element_factory(elf, indent=0):
def output_plugin(plugin, indent=0):
print "PLUGIN", plugin.get_name()
- version = ".".join([str(i) for i in plugin.get_version()])
+ version = plugin.get_version()
elements = {}
+ gst.debug('getting features for plugin %s' % plugin.get_name())
for feature in plugin.get_feature_list():
if isinstance(feature, gst.ElementFactory):
elements[feature.get_name()] = feature
+ gst.debug("got features")
elementsoutput = []
keys = elements.keys()