summaryrefslogtreecommitdiff
path: root/python/pkgmanager.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-12 11:32:37 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-12 11:32:37 +0200
commitd65882227dd3201c03c87922391d1ad8d21ee84e (patch)
tree2378c3d778f554627fd05fa8877bc4975da97ba1 /python/pkgmanager.cc
parent8d79b99c1a3338e31e8def858cee3209824ae8bf (diff)
downloadpython-apt-d65882227dd3201c03c87922391d1ad8d21ee84e.tar.gz
* python/pkgmanager.cc:
- fix typo
Diffstat (limited to 'python/pkgmanager.cc')
-rw-r--r--python/pkgmanager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pkgmanager.cc b/python/pkgmanager.cc
index bcd4c45b..9670f238 100644
--- a/python/pkgmanager.cc
+++ b/python/pkgmanager.cc
@@ -68,7 +68,7 @@ static PyObject *PkgManagerFixMissing(PyObject *Self,PyObject *Args)
static PyMethodDef PkgManagerMethods[] =
{
- {"GetArchives",PkgManagerGetArchives,METH_VARARGS,"Load the selected archvies into the fetcher"},
+ {"GetArchives",PkgManagerGetArchives,METH_VARARGS,"Load the selected archives into the fetcher"},
{"DoInstall",PkgManagerDoInstall,METH_VARARGS,"Do the actual install"},
{"FixMissing",PkgManagerFixMissing,METH_VARARGS,"Fix the install if a pkg couldn't be downloaded"},
{}