X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bindings%2Fpython%2Fvlcwrapper.py;h=9770aefdf4e51655da7a7c83911b0dd9526e3151;hb=d253749f68a85d8c720e66e4a0f7ad9693ba84e3;hp=7f64a02aa2bbc16dc3ab859f55923ce87e0c19ee;hpb=07a52db97ca6689ecc846818cfb681dd9b3c02e3;p=vlc diff --git a/bindings/python/vlcwrapper.py b/bindings/python/vlcwrapper.py index 7f64a02aa2..9770aefdf4 100644 --- a/bindings/python/vlcwrapper.py +++ b/bindings/python/vlcwrapper.py @@ -1,11 +1,14 @@ """Wrapper around vlc module in order to ease the use of vlc.Object 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.