Merge lp:~jamesodhunt/python-apt/fix-for-PkgCacheGetIsMultiArch into lp:~mvo/python-apt/debian-sid-mirrored

Proposed by James Hunt
Status: Needs review
Proposed branch: lp:~jamesodhunt/python-apt/fix-for-PkgCacheGetIsMultiArch
Merge into: lp:~mvo/python-apt/debian-sid-mirrored
Diff against target: 27 lines (+8/-1)
2 files modified
debian/changelog (+7/-0)
python/cache.cc (+1/-1)
To merge this branch: bzr merge lp:~jamesodhunt/python-apt/fix-for-PkgCacheGetIsMultiArch
Reviewer Review Type Date Requested Status
Michael Vogt Pending
Review via email: mp+127198@code.launchpad.net

Description of the change

* python/cache.cc: PkgCacheGetIsMultiArch(): Return calculated
  value rather than a random one.

To post a comment you must log in.

Unmerged revisions

618. By James Hunt

python/cache.cc: PkgCacheGetIsMultiArch(): Return calculated
value rather than a random one.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2012-06-22 08:37:31 +0000
3+++ debian/changelog 2012-10-01 08:13:24 +0000
4@@ -1,3 +1,10 @@
5+python-apt (0.8.5ubuntu1) UNRELEASED; urgency=low
6+
7+ * python/cache.cc: PkgCacheGetIsMultiArch(): Return calculated
8+ value rather than a random one.
9+
10+ -- James Hunt <james.hunt@ubuntu.com> Mon, 01 Oct 2012 09:10:02 +0100
11+
12 python-apt (0.8.5) unstable; urgency=low
13
14 [ Michael Vogt ]
15
16=== modified file 'python/cache.cc'
17--- python/cache.cc 2012-04-17 19:17:10 +0000
18+++ python/cache.cc 2012-10-01 08:13:24 +0000
19@@ -286,7 +286,7 @@
20
21 static PyObject *PkgCacheGetIsMultiArch(PyObject *Self, void*) {
22 pkgCache *Cache = GetCpp<pkgCache *>(Self);
23- PyBool_FromLong(Cache->MultiArchCache());
24+ return PyBool_FromLong(Cache->MultiArchCache());
25 }
26
27 static PyGetSetDef PkgCacheGetSet[] = {

Subscribers

People subscribed via source and target branches

to all changes: