--- source_connman.py--orig 2012-06-25 18:59:11.616748254 -0400 +++ source_connman.py 2012-06-25 19:18:40.024772948 -0400 @@ -11,6 +11,7 @@ the full text of the license. ''' +from __future__ import print_function import apport.hookutils def add_info(report, ui): @@ -26,4 +27,4 @@ report['CrashDB'] = 'ubuntu' add_info(report, None) for key in report: - print '%s: %s' % (key, report[key].split('\n', 1)[0]) + print('%s: %s' % (key, report[key].split('\n', 1)[0]))