diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmki-py.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/rpmki-py.c b/python/rpmki-py.c index 8ed04871d..1bc53e1d0 100644 --- a/python/rpmki-py.c +++ b/python/rpmki-py.c @@ -27,6 +27,7 @@ * \endcode * * ts.dbMatch() can be used to get the packages containing the keys of interest + */ /** \ingroup python * \name Class: Rpmki @@ -77,7 +78,7 @@ static PyNumberMethods rpmki_as_number = { 0, /* nb_negative */ 0, /* nb_positive */ 0, /* nb_absolute */ - 0, (inquiry)rpmki_bool, /* nb_bool/nonzero */ + (inquiry)rpmki_bool, /* nb_bool/nonzero */ }; static char rpmki_doc[] = |