diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | gio/giomodule.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 <johan@gnome.org> 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(); |