Title: [96262] trunk/Tools
Revision
96262
Author
[email protected]
Date
2011-09-28 14:30:04 -0700 (Wed, 28 Sep 2011)

Log Message

Attempt fix for Leopard python unit test run.

* Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (96261 => 96262)


--- trunk/Tools/ChangeLog	2011-09-28 21:02:25 UTC (rev 96261)
+++ trunk/Tools/ChangeLog	2011-09-28 21:30:04 UTC (rev 96262)
@@ -1,3 +1,9 @@
+2011-09-28  David Levin  <[email protected]>
+
+        Attempt fix for Leopard python unit test run.
+
+        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
+
 2011-09-27  Dimitri Glazkov  <[email protected]>
 
         REGRESSION(r95573): Crash when loading SVG documents in a flattened frame or any SVG document in Chromium/Mac.

Modified: trunk/Tools/Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py (96261 => 96262)


--- trunk/Tools/Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py	2011-09-28 21:02:25 UTC (rev 96261)
+++ trunk/Tools/Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py	2011-09-28 21:30:04 UTC (rev 96262)
@@ -44,7 +44,7 @@
         try:
             callable(*args)
             self.assertTrue(False, 'No assert raised.')
-        except Exception as exception:
+        except Exception, exception:
             self.assertTrue(re.match(regex_message, exception.__str__()),
                             'Expected regex "%s"\nGot "%s"' % (regex_message, exception.__str__()))
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to