Title: [113040] trunk/Tools
Revision
113040
Author
[email protected]
Date
2012-04-03 08:37:16 -0700 (Tue, 03 Apr 2012)

Log Message

Unreviewed, test-webkitpy build fix after r113037.

* Scripts/webkitpy/layout_tests/port/gtk.py:
(GtkPort._get_crash_log):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (113039 => 113040)


--- trunk/Tools/ChangeLog	2012-04-03 15:33:43 UTC (rev 113039)
+++ trunk/Tools/ChangeLog	2012-04-03 15:37:16 UTC (rev 113040)
@@ -1,5 +1,12 @@
 2012-04-03  Philippe Normand  <[email protected]>
 
+        Unreviewed, test-webkitpy build fix after r113037.
+
+        * Scripts/webkitpy/layout_tests/port/gtk.py:
+        (GtkPort._get_crash_log):
+
+2012-04-03  Philippe Normand  <[email protected]>
+
         [GTK] crash log reports support
         https://bugs.webkit.org/show_bug.cgi?id=81659
 

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py (113039 => 113040)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-04-03 15:33:43 UTC (rev 113039)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-04-03 15:37:16 UTC (rev 113040)
@@ -170,7 +170,7 @@
                 coredump_path = list(reversed(sorted(dumps)))[0]
                 crash_log, errors = self._get_gdb_output(coredump_path)
 
-        stderr_lines = errors + (stderr or '<empty>').decode('utf8', errors='ignore').splitlines()
+        stderr_lines = errors + (stderr or '<empty>').decode('utf8', 'ignore').splitlines()
         errors_str = '\n'.join(('STDERR: ' + l) for l in stderr_lines)
         if not crash_log:
             if not log_directory:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to