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

Proposed by Matthieu Baerts
Status: Merged
Merged at revision: 31
Proposed branch: lp:~matttbe/ubuntu/quantal/connman/lp1013171
Merge into: lp:ubuntu/quantal/connman
Diff against target: 32 lines (+9/-1)
2 files modified
debian/changelog (+7/-0)
debian/source_connman.py (+2/-1)
To merge this branch: bzr merge lp:~matttbe/ubuntu/quantal/connman/lp1013171
Reviewer Review Type Date Requested Status
Andrew Starr-Bochicchio (community) Approve
Review via email: mp+113071@code.launchpad.net

Description of the change

Hello,

This is just a patch to update apport hook for python3.

Matt

To post a comment you must log in.
Revision history for this message
Andrew Starr-Bochicchio (andrewsomething) :
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-02-19 02:26:09 +0000
3+++ debian/changelog 2012-07-02 16:39:19 +0000
4@@ -1,3 +1,10 @@
5+connman (0.78-0ubuntu2) UNRELEASED; urgency=low
6+
7+ * debian/source_connman.py:
8+ - Update apport hook for python3 ; Thanks to Edward Donovan (LP: #1013171)
9+
10+ -- Matthieu Baerts (matttbe) <matttbe@gmail.com> Mon, 02 Jul 2012 18:37:15 +0200
11+
12 connman (0.78-0ubuntu1) precise; urgency=low
13
14 * New upstream release (FFe: LP: #936007)
15
16=== modified file 'debian/source_connman.py'
17--- debian/source_connman.py 2010-09-02 16:10:59 +0000
18+++ debian/source_connman.py 2012-07-02 16:39:19 +0000
19@@ -11,6 +11,7 @@
20 the full text of the license.
21 '''
22
23+from __future__ import print_function
24 import apport.hookutils
25
26 def add_info(report, ui):
27@@ -26,4 +27,4 @@
28 report['CrashDB'] = 'ubuntu'
29 add_info(report, None)
30 for key in report:
31- print '%s: %s' % (key, report[key].split('\n', 1)[0])
32+ print('%s: %s' % (key, report[key].split('\n', 1)[0]))

Subscribers

People subscribed via source and target branches