summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2014-02-13 13:07:40 +0200
committerPanu Matilainen <pmatilai@redhat.com>2014-09-05 14:44:56 +0300
commit2c6e0366ffc6bdbafbdf82df7fcedd975a361465 (patch)
tree2adc34c2efb4b92b6a175ad7d4402a395e45d708
parent71527b6fbd2b3898beabd602c462a01b691d67d8 (diff)
downloadrpm-2c6e0366ffc6bdbafbdf82df7fcedd975a361465.tar.gz
Fix signing module methods missing on python3, duh
(cherry picked from commit a021aca8fda8fcb2f521e1816b78c4f8bb640706)
-rw-r--r--python/rpmsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmsmodule.c b/python/rpmsmodule.c
index 653f4bf96..a8289b5f6 100644
--- a/python/rpmsmodule.c
+++ b/python/rpmsmodule.c
@@ -59,7 +59,7 @@ static struct PyModuleDef moduledef = {
"_rpms", /* m_name */
rpms__doc__, /* m_doc */
0, /* m_size */
- NULL, /* m_methods */
+ modMethods, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */