From c5e6c27c01bd1a7cca079df7d22aa95e58e7de63 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Thu, 17 Jul 2008 11:22:25 +0000 Subject: The module is called gio._gio, not just _gio. 2008-07-17 Johan Dahlin * gio/giomodule.c (init_gio): (DL_EXPORT): The module is called gio._gio, not just _gio. svn path=/trunk/; revision=822 --- ChangeLog | 1 + gio/giomodule.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a91285a..bd43c8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * gio/giomodule.c (init_gio): Add a pygio_version module attribute + (DL_EXPORT): The module is called gio._gio, not just _gio. 2008-07-17 Johan Dahlin diff --git a/gio/giomodule.c b/gio/giomodule.c index ad81d31..8ee6d47 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -46,7 +46,7 @@ init_gio(void) /* perform any initialisation required by the library here */ - m = Py_InitModule("_gio", pygio_functions); + m = Py_InitModule("gio._gio", pygio_functions); d = PyModule_GetDict(m); init_pygobject(); -- cgit