summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/cache.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/cache.cc b/python/cache.cc
index 2bbeb14a..36e49710 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -20,6 +20,7 @@
#include <apt-pkg/packagemanager.h>
#include <apt-pkg/pkgsystem.h>
#include <apt-pkg/sourcelist.h>
+#include <apt-pkg/algorithms.h>
#include <Python.h>
#include "progress.h"
@@ -86,7 +87,7 @@ static PyObject *PkgCacheUpdate(PyObject *Self,PyObject *Args)
PyFetchProgress progress;
progress.setCallbackInst(pyFetchProgressInst);
pkgSourceList *source = GetCpp<pkgSourceList*>(pySourcesList);
- bool res = Cache->ListUpdate(progress, *source);
+ bool res = ListUpdate(progress, *source);
PyObject *PyRes = Py_BuildValue("b", res);
return HandleErrors(PyRes);