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
=== modified file 'debian/changelog'
--- debian/changelog 2012-02-19 02:26:09 +0000
+++ debian/changelog 2012-07-02 16:39:19 +0000
@@ -1,3 +1,10 @@
1connman (0.78-0ubuntu2) UNRELEASED; urgency=low
2
3 * debian/source_connman.py:
4 - Update apport hook for python3 ; Thanks to Edward Donovan (LP: #1013171)
5
6 -- Matthieu Baerts (matttbe) <matttbe@gmail.com> Mon, 02 Jul 2012 18:37:15 +0200
7
1connman (0.78-0ubuntu1) precise; urgency=low8connman (0.78-0ubuntu1) precise; urgency=low
29
3 * New upstream release (FFe: LP: #936007)10 * New upstream release (FFe: LP: #936007)
411
=== modified file 'debian/source_connman.py'
--- debian/source_connman.py 2010-09-02 16:10:59 +0000
+++ debian/source_connman.py 2012-07-02 16:39:19 +0000
@@ -11,6 +11,7 @@
11the full text of the license.11the full text of the license.
12'''12'''
1313
14from __future__ import print_function
14import apport.hookutils15import apport.hookutils
1516
16def add_info(report, ui):17def add_info(report, ui):
@@ -26,4 +27,4 @@
26 report['CrashDB'] = 'ubuntu'27 report['CrashDB'] = 'ubuntu'
27 add_info(report, None)28 add_info(report, None)
28 for key in report:29 for key in report:
29 print '%s: %s' % (key, report[key].split('\n', 1)[0])30 print('%s: %s' % (key, report[key].split('\n', 1)[0]))

Subscribers

People subscribed via source and target branches