summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2010-11-09 10:57:31 +0100
committerEdward Hervey <bilboed@bilboed.com>2010-11-09 11:01:11 +0100
commitee647847f33186e57b6fb3d47409dde9b55b9284 (patch)
treee6f2acf4d40cb025a2945d6b7ac7a1c417646141
parentbe08aac982dee99b4e917a03d70603f11ae1adb8 (diff)
pygst: Get the _PyGst_API symbol from the proper module
https://bugzilla.gnome.org/show_bug.cgi?id=634365
-rw-r--r--gst/pygst.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/pygst.h b/gst/pygst.h
index 36bcd75..01f7179 100644
--- a/gst/pygst.h
+++ b/gst/pygst.h
@@ -52,7 +52,7 @@ pygst_init(void)
{
PyObject *gstobject, *cobject;
- gstobject = PyImport_ImportModule("_gst");
+ gstobject = PyImport_ImportModule("gst._gst");
if (!gstobject) {
if (PyErr_Occurred())
{