From dba326f60e159697a740f08959d098e19c200453 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 22 Dec 2010 16:28:39 +0100 Subject: extend run_event() to run_event_on_dir_name() and run_event_on_crash_data() Signed-off-by: Denys Vlasenko --- src/report-python/reportmodule.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/report-python/reportmodule.c') diff --git a/src/report-python/reportmodule.c b/src/report-python/reportmodule.c index 6dda73cf..bd74cff3 100644 --- a/src/report-python/reportmodule.c +++ b/src/report-python/reportmodule.c @@ -17,18 +17,16 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include -#include "common.h" -#include "crash_data.h" -#include "dump_dir.h" +#include "common.h" PyObject *ReportError; static PyMethodDef module_methods[] = { /* method_name, func, flags, doc_string */ - { "dd_opendir" , p_dd_opendir, METH_VARARGS, NULL }, - { "dd_create" , p_dd_create, METH_VARARGS, NULL }, - { "delete_dump_dir", p_delete_dump_dir, METH_VARARGS, NULL }, + { "dd_opendir" , p_dd_opendir , METH_VARARGS }, + { "dd_create" , p_dd_create , METH_VARARGS }, + { "delete_dump_dir", p_delete_dump_dir, METH_VARARGS }, { NULL } }; -- cgit