diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-01-05 14:34:46 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-01-05 16:05:10 +0200 |
commit | ff0ece3f6be58c8c28a766bdee5ed36daf1727b1 (patch) | |
tree | 7ecf56d29f98d045d2d8d80216e7d5bec66cecb9 /python | |
parent | ef75cadf038ab919f3ec37cf5c5ee77fd52b5c82 (diff) | |
download | librpm-tizen-ff0ece3f6be58c8c28a766bdee5ed36daf1727b1.tar.gz librpm-tizen-ff0ece3f6be58c8c28a766bdee5ed36daf1727b1.tar.bz2 librpm-tizen-ff0ece3f6be58c8c28a766bdee5ed36daf1727b1.zip |
Add enum for RPMCALLBACK_INST_STOP callback event
- Unused atm but we'll be adding this shortly
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index fdbb05ca5..b82a06d10 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -451,6 +451,7 @@ static int initModule(PyObject *m) REGISTER_ENUM(RPMCALLBACK_SCRIPT_ERROR); REGISTER_ENUM(RPMCALLBACK_SCRIPT_START); REGISTER_ENUM(RPMCALLBACK_SCRIPT_STOP); + REGISTER_ENUM(RPMCALLBACK_INST_STOP); REGISTER_ENUM(RPMPROB_BADARCH); REGISTER_ENUM(RPMPROB_BADOS); |