Commit 8b9e6c54 authored by Olivier Aubert's avatar Olivier Aubert

bindings/python/vlcwrapper.py: use vlcinternal module in wrapper

parent a655740f
...@@ -4,10 +4,11 @@ class (completion in ipython, access variable as attributes, etc). ...@@ -4,10 +4,11 @@ class (completion in ipython, access variable as attributes, etc).
$Id$ $Id$
""" """
import vlc import vlc
import vlcinternal
class VLCObject(object): class VLCObject(object):
def __init__(self, id): def __init__(self, id):
object.__setattr__(self, '_o', vlc.Object(id)) object.__setattr__(self, '_o', vlcinternal.Object(id))
def find(self, typ): def find(self, typ):
"""Returns a VLCObject for the given child. """Returns a VLCObject for the given child.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment