Skip to content

Commit

Permalink
Fix a search-and-replace error
Browse files Browse the repository at this point in the history
Fix accidental renaming of a method
in #609

Signed-off-by: Michal Fabik <[email protected]>
  • Loading branch information
michalfabik committed May 7, 2020
1 parent 6d44dda commit f4a3948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/report-python/report/dump_dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static PyMethodDef p_dump_dir_methods[] = {
{ "load_text" , p_dd_load_text, METH_VARARGS, NULL },
{ "save_text" , p_dd_save_text, METH_VARARGS, NULL },
{ "save_binary", p_dd_save_binary, METH_VARARGS, NULL },
{ "libreport_copy_file", p_dd_copy_file, METH_VARARGS, NULL },
{ "copy_file" , p_dd_copy_file, METH_VARARGS, NULL },
{ "delete_item", p_dd_delete_item, METH_VARARGS, NULL },
{ NULL }
};
Expand Down

0 comments on commit f4a3948

Please sign in to comment.