summaryrefslogtreecommitdiffstats
path: root/src/report-python/reportmodule.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-03-03 18:10:29 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2011-03-03 18:10:29 +0100
commit6d768d603aaeb5f912086c3068331fcc88aa5340 (patch)
tree6aba1d07f050af7f5045e0273730b054bbcd7404 /src/report-python/reportmodule.c
parent28a7bf1a5432f7e9af4661dc3032b411b7d8f1b0 (diff)
downloadabrt-6d768d603aaeb5f912086c3068331fcc88aa5340.tar.gz
abrt-6d768d603aaeb5f912086c3068331fcc88aa5340.tar.xz
abrt-6d768d603aaeb5f912086c3068331fcc88aa5340.zip
gui-wizard-gtk: fix stealing again
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/report-python/reportmodule.c')
-rw-r--r--src/report-python/reportmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/report-python/reportmodule.c b/src/report-python/reportmodule.c
index fd58a3bd..41f0ba29 100644
--- a/src/report-python/reportmodule.c
+++ b/src/report-python/reportmodule.c
@@ -75,7 +75,8 @@ init_pyreport(void)
Py_INCREF(&p_dump_dir_type);
PyModule_AddObject(m, "dump_dir", (PyObject *)&p_dump_dir_type);
- PyModule_AddObject(m, "DD_FAIL_QUIETLY" , Py_BuildValue("i", DD_FAIL_QUIETLY ));
+ PyModule_AddObject(m, "DD_FAIL_QUIETLY_ENOENT" , Py_BuildValue("i", DD_FAIL_QUIETLY_ENOENT ));
+ PyModule_AddObject(m, "DD_FAIL_QUIETLY_EACCES" , Py_BuildValue("i", DD_FAIL_QUIETLY_EACCES ));
PyModule_AddObject(m, "DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE", Py_BuildValue("i", DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE));
Py_INCREF(&p_run_event_state_type);