updating docs build
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 3 Sep 2005 15:02:23 +0000 (15:02 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 3 Sep 2005 15:02:23 +0000 (15:02 +0000)
Original commit message from CVS:
updating docs build

gst-xmlinspect.py

index 6fa85af..c835980 100644 (file)
@@ -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()