diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-10-01 13:47:33 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-10-01 13:47:33 +0200 |
| commit | 4a8fb0247a7260ee2c74f541d5cc04446f02dd60 (patch) | |
| tree | 665ec16a0965b2de99b704dbc9071be6e937d212 /python | |
| parent | 6ade8dd5fe013b0c42dbd8ce1bd5263da097e96e (diff) | |
| parent | d3d4d322614a44cf84a6f2b40bc21d09bbfb2405 (diff) | |
| download | python-apt-4a8fb0247a7260ee2c74f541d5cc04446f02dd60.tar.gz | |
merged from lp:~jamesodhunt/python-apt/fix-for-PkgCacheGetIsMultiArch and prepare new upload
Diffstat (limited to 'python')
| -rw-r--r-- | python/cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/cache.cc b/python/cache.cc index c51bd4af..10561ca0 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[] = { |
