summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-06-09 21:04:36 +0200
committerJulian Andres Klode <jak@debian.org>2009-06-09 21:04:36 +0200
commitaa31a066174571a64e68c35203f6b2404ef2393f (patch)
tree704ea2ef52b8ce36d26508e359cc0f691fd42efb /python
parenta307f6c405d55895690e16d55de36549f5b05d8b (diff)
downloadpython-apt-aa31a066174571a64e68c35203f6b2404ef2393f.tar.gz
python/apt_pkgmodule.cc: Fix the modulename.
Diffstat (limited to 'python')
-rw-r--r--python/apt_pkgmodule.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc
index 3d76894d..bfa59f8e 100644
--- a/python/apt_pkgmodule.cc
+++ b/python/apt_pkgmodule.cc
@@ -527,7 +527,7 @@ static int apt_inst_clear(PyObject *m) {
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
- "apt_inst",
+ "apt_pkg",
NULL,
sizeof(struct module_state),
methods,