summaryrefslogtreecommitdiff
path: root/python/cache.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-10-17 10:08:36 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2012-10-17 10:08:36 +0200
commit718409afe561f7dfc7407214685ccbfacdf31631 (patch)
tree837b8b6e1539c1bb976137012ca2c12350dc5150 /python/cache.cc
parent5384546c17c80b809791ef95ac357bc017be83f9 (diff)
parent7bd938dd78ab27ec23ffd84811dbdfa5dd83593a (diff)
downloadpython-apt-718409afe561f7dfc7407214685ccbfacdf31631.tar.gz
merged debian-sid branch
Diffstat (limited to 'python/cache.cc')
-rw-r--r--python/cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/cache.cc b/python/cache.cc
index a1a865af..e527faba 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -286,7 +286,7 @@ static PyObject *PkgCacheGetFileList(PyObject *Self, void*) {
static PyObject *PkgCacheGetIsMultiArch(PyObject *Self, void*) {
pkgCache *Cache = GetCpp<pkgCache *>(Self);
- PyBool_FromLong(Cache->MultiArchCache());
+ return PyBool_FromLong(Cache->MultiArchCache());
}
static PyGetSetDef PkgCacheGetSet[] = {