Commit 66fc0016 authored by Olivier Aubert's avatar Olivier Aubert

python bindings: rename some files

parent 445d63e0
......@@ -191,7 +191,7 @@ vlcMediaDescriptor_get_meta( PyObject *self, PyObject *args )
}
if( i_index < 0 )
{
PyObject *py_exc = vlcInstance_Exception;
PyObject *py_exc = vlc_Exception;
PyErr_SetString( py_exc, "Unknown meta attribute" );
return NULL;
}
......
......@@ -467,7 +467,7 @@ vlcMediaInstance_set_media( PyObject *self, PyObject *args )
}
else
{
PyObject *py_exc = vlcInstance_Exception;
PyObject *py_exc = vlc_Exception;
PyErr_SetString( py_exc, "vlc.MediaDescriptor parameter needed" );
return NULL;
}
......
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