Merge lp:~matttbe/ubuntu/quantal/compiz/lp1013171 into lp:ubuntu/quantal/compiz

Proposed by Matthieu Baerts
Status: Merged
Merged at revision: 3272
Proposed branch: lp:~matttbe/ubuntu/quantal/compiz/lp1013171
Merge into: lp:ubuntu/quantal/compiz
Diff against target: 36 lines (+7/-2)
2 files modified
debian/changelog (+5/-1)
debian/source_compiz.py (+2/-1)
To merge this branch: bzr merge lp:~matttbe/ubuntu/quantal/compiz/lp1013171
Reviewer Review Type Date Requested Status
Didier Roche-Tolomelli Approve
Review via email: mp+113064@code.launchpad.net

Description of the change

Hello Didier,

Here is another patch to update apport hook for python3.
Again I set you as reviewer because you're the latest commiter on the main branch and the version is still set as 'UNRELEASED' but I can add ubuntu-sponsors team if you want ;)

Have a nice day,

Matt

To post a comment you must log in.
Revision history for this message
Didier Roche-Tolomelli (didrocks) wrote :

Looks good, same, pulling and pushing :)

review: Approve

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-29 07:50:37 +0000
3+++ debian/changelog 2012-07-02 15:33:32 +0000
4@@ -1,11 +1,15 @@
5 compiz (1:0.9.8+bzr3249-0ubuntu3) UNRELEASED; urgency=low
6
7+ [ Didier Roche ]
8 * debian/patches/ubuntu-config.patch:
9 - refresh with latest trunk
10 * debian/*docs:
11 - remove the TODO copy now removed upstream
12
13- -- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jun 2012 09:23:25 +0200
14+ [ Matthieu Baerts (matttbe) ]
15+ * Update apport hook for python3 ; thanks to Edward Donovan (LP: #1013171)
16+
17+ -- Matthieu Baerts (matttbe) <matttbe@gmail.com> Mon, 02 Jul 2012 17:24:40 +0200
18
19 compiz (1:0.9.8+bzr3249-0ubuntu2) quantal; urgency=low
20
21
22=== modified file 'debian/source_compiz.py'
23--- debian/source_compiz.py 2012-06-19 11:22:48 +0000
24+++ debian/source_compiz.py 2012-07-02 15:33:32 +0000
25@@ -1,9 +1,10 @@
26 import apport.packaging
27+from apport.hookutils import *
28
29 def add_info(report, ui):
30
31 # if it's a stacktrace, report it directly against the right component
32- if report.has_key("Stacktrace"):
33+ if "Stacktrace" in report:
34 for external_component in ("/usr/lib/libnux", "/usr/lib/compiz/libunityshell", "/usr/lib/libunity"):
35 for words in report["Stacktrace"].split():
36 if words.startswith(external_component):

Subscribers

People subscribed via source and target branches