]> git.sesse.net Git - vlc/commitdiff
bindings/python/vlcwrapper.py: use vlcinternal module in wrapper
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 9 Mar 2007 10:27:34 +0000 (10:27 +0000)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 9 Mar 2007 10:27:34 +0000 (10:27 +0000)
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.