diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-12 15:35:55 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-12 15:35:55 +0200 |
| commit | 8df7cb6c729a5451f231f2cd3e82fc495eaea289 (patch) | |
| tree | 00e39edbd6a6e3960f204d8005dbe946392ce0ff | |
| parent | 7035132c76acf5fd72e62437e487f411bf726d5c (diff) | |
| download | python-apt-8df7cb6c729a5451f231f2cd3e82fc495eaea289.tar.gz | |
* fix missing docstring
| -rw-r--r-- | debian/changelog | 4 | ||||
| -rw-r--r-- | python/apt_pkgmodule.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 02ec00a1..7029a040 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,10 @@ python-apt (0.6.20) unstable; urgency=low * apt/progress.py: - use os._exit() in the child (lp: #53298) - use select() when checking for statusfd (lp: #53282) + * acknoledge NMU (closes: #378048, #373512) + * python/apt_pkgmodule.cc: + - fix missing docstring (closes: #368907), + Thanks to Josh Triplett -- diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc index b1c5c2a5..24d876af 100644 --- a/python/apt_pkgmodule.cc +++ b/python/apt_pkgmodule.cc @@ -440,7 +440,7 @@ static PyMethodDef methods[] = {"GetPkgAcqFile",(PyCFunction)GetPkgAcqFile,METH_KEYWORDS|METH_VARARGS,"GetPkgAcquireFile() -> pkgAcquireFile"}, // PkgManager - {"GetPackageManager",GetPkgManager,METH_VARARGS,"GetPackageManager() -> PackageManager"}, + {"GetPackageManager",GetPkgManager,METH_VARARGS,"GetPackageManager(DepCache) -> PackageManager"}, {} }; |
