diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-06-09 21:04:36 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-06-09 21:04:36 +0200 |
| commit | aa31a066174571a64e68c35203f6b2404ef2393f (patch) | |
| tree | 704ea2ef52b8ce36d26508e359cc0f691fd42efb /python | |
| parent | a307f6c405d55895690e16d55de36549f5b05d8b (diff) | |
| download | python-apt-aa31a066174571a64e68c35203f6b2404ef2393f.tar.gz | |
python/apt_pkgmodule.cc: Fix the modulename.
Diffstat (limited to 'python')
| -rw-r--r-- | python/apt_pkgmodule.cc | 2 |
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, |
