]> git.sesse.net Git - vlc/blobdiff - bindings/python/vlcwrapper.py
Clone video filter : fix potential memleak.
[vlc] / bindings / python / vlcwrapper.py
index 1d798c2984d8309f8379394c56e78f2ece1d33de..9770aefdf4e51655da7a7c83911b0dd9526e3151 100644 (file)
@@ -4,10 +4,11 @@ class (completion in ipython, access variable as attributes, etc).
 $Id$
 """
 import vlc
+import vlcinternal
 
 class VLCObject(object):
     def __init__(self, id):
-        object.__setattr__(self, '_o', vlc.Object(id))
+        object.__setattr__(self, '_o', vlcinternal.Object(id))
 
     def find(self, typ):
        """Returns a VLCObject for the given child.