Chromium Code Reviews| Index: verification/tree_status.py |
| diff --git a/verification/tree_status.py b/verification/tree_status.py |
| index d4bd78f048128aea41ca53f2e3f3543fe3dc7421..b258e16a88cdfbe4fb0f57fa0f230161d8812795 100644 |
| --- a/verification/tree_status.py |
| +++ b/verification/tree_status.py |
| @@ -14,13 +14,7 @@ from verification import base |
| class TreeStatus(base.IVerifierStatus): |
| - persistent = base.IVerifierStatus.persistent + [ |
| - 'tree_status_url', |
| - ] |
| - |
| - def __init__(self, tree_status_url): |
| - super(TreeStatus, self).__init__() |
| - self.tree_status_url = tree_status_url |
| + tree_status_url = str |
|
csharp
2012/11/23 18:31:58
Is it ok for this class to now get constructed wit
M-A Ruel
2012/11/23 18:44:06
First, some background: it's a design issue that t
|
| def get_state(self): |
| return base.SUCCEEDED |