diff options
author | Nicholas Piper <nicholas@users.sourceforge.net> | 2007-08-08 07:14:36 +0000 |
---|---|---|
committer | Nicholas Piper <nicholas@users.sourceforge.net> | 2007-08-08 07:14:36 +0000 |
commit | 2fa7ac0312637f1bace4c93c9bddf6c84b6f9307 (patch) | |
tree | 8160e001119e84207a64c0cfbe9da499e251b6e2 | |
parent | 0d226be7ae4d6d2d25a6edca0158c14224e87a1e (diff) | |
download | libgpod-2fa7ac0312637f1bace4c93c9bddf6c84b6f9307.tar.gz libgpod-2fa7ac0312637f1bace4c93c9bddf6c84b6f9307.tar.xz libgpod-2fa7ac0312637f1bace4c93c9bddf6c84b6f9307.zip |
Move PyDateTime_IMPORT outside of ifdef HAVE_GDKPIXBUF + HAVE_PYGOBJECT, including it there was a merge error
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1674 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | bindings/python/gpod.i.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/gpod.i.in b/bindings/python/gpod.i.in index 7e4366c..e74d3d9 100644 --- a/bindings/python/gpod.i.in +++ b/bindings/python/gpod.i.in @@ -300,10 +300,10 @@ PyObject* sw_get_photo(GList *list, gint index) { #ifdef HAVE_GDKPIXBUF #ifdef HAVE_PYGOBJECT g_type_init (); - PyDateTime_IMPORT; init_pygobject (); #endif #endif + PyDateTime_IMPORT; %} %include "gpod_doc.i" |