Ubuntu Pastebin

Paste from debug at Thu, 1 Oct 2015 13:51:58 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
=== modified file 'data/package-hooks/source_ubiquity.py'
--- data/package-hooks/source_ubiquity.py	2015-08-28 17:03:57 +0000
+++ data/package-hooks/source_ubiquity.py	2015-10-01 13:46:56 +0000
@@ -57,7 +57,7 @@
 
 def add_info(report, ui):
     add_installation_log(report, 'UbiquitySyslog', 'syslog')
-    syslog = report['UbiquitySyslog'].decode('UTF-8')
+    syslog = report['UbiquitySyslog']
     if 'Buffer I/O error on device' in syslog:
         if re.search('Attached .* CD-ROM (\w+)', syslog):
             cd_drive = re.search('Attached .* CD-ROM (\w+)', syslog).group(1)

=== modified file 'debian/changelog'
--- debian/changelog	2015-09-28 21:24:49 +0000
+++ debian/changelog	2015-10-01 13:51:35 +0000
@@ -1,8 +1,14 @@
 apport (2.19-0ubuntu2) UNRELEASED; urgency=medium
 
+  [ Brian Murray ]
   * data/iwlwifi_error_dump: fix add_package call. (LP: #1496268)
 
- -- Brian Murray <brian@ubuntu.com>  Mon, 28 Sep 2015 14:24:22 -0700
+  [ Sebastien Bacher ]
+  * data/package-hooks/sources_ubiquity.py:
+    - don't try to use decode on a str object, that's not required/working 
+      with python3 (lp: #1501773)
+
+ -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 01 Oct 2015 15:49:57 +0200
 
 apport (2.19-0ubuntu1) wily; urgency=medium
 
Download as text