Index: media/tools/layout_tests/test_expectations_history.py |
diff --git a/media/tools/layout_tests/test_expectations_history.py b/media/tools/layout_tests/test_expectations_history.py |
index 27db08bc854b11be30e7359b0375a18c47e90971..3799db7bd7f414ed711ed642f1a4b2a28ca1097c 100644 |
--- a/media/tools/layout_tests/test_expectations_history.py |
+++ b/media/tools/layout_tests/test_expectations_history.py |
@@ -1,17 +1,17 @@ |
-# Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
"""A module for the history of the test expectation file.""" |
+from datetime import datetime |
+from datetime import timedelta |
+ |
import re |
import sys |
import time |
import pysvn |
-from datetime import datetime |
-from datetime import timedelta |
- |
# Default Webkit SVN location for chromium test expectation file. |
# TODO(imasaki): support multiple test expectation files. |
DEFAULT_TEST_EXPECTATION_LOCATION = ( |
@@ -19,7 +19,7 @@ DEFAULT_TEST_EXPECTATION_LOCATION = ( |
'LayoutTests/platform/chromium/test_expectations.txt') |
-class TestExpectationsHistory: |
+class TestExpectationsHistory(object): |
"""A class to represent history of the test expectation file. |
The history is obtained by calling PySVN.log()/diff() APIs. |