diff --git a/ChangeLog b/ChangeLog index e42951d7..8249a277 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Jul 8 12:20:11 CEST 2003 Daniel Veillard + + * python/libxml_wrap.h: applied patch from #116943 which should + fix the xsltSaveResultToFile python binding. + Mon Jul 7 11:03:18 CEST 2003 Daniel Veillard * INSTALL: removed an old reference to libxml2 >= 2.2.12 diff --git a/python/libxml_wrap.h b/python/libxml_wrap.h index 77c07368..0f2ad935 100644 --- a/python/libxml_wrap.h +++ b/python/libxml_wrap.h @@ -56,7 +56,7 @@ typedef struct { } Pycatalog_Object; #define PyFile_Get(v) (((v) == Py_None) ? NULL : \ - (PyFile_Check(v) ? NULL : (PyFile_AsFile(v)))) + (PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout)) PyObject * libxml_intWrap(int val); PyObject * libxml_longWrap(long val);