Chromium Code Reviews| Index: appengine/findit/lib/gitiles/commit_util.py |
| diff --git a/appengine/findit/lib/gitiles/commit_util.py b/appengine/findit/lib/gitiles/commit_util.py |
| index 790a6f796a45259a9e985d14aa3c860c5ca3c1e0..753cc9e92483d933b1c052afc2b1156cc49af2eb 100644 |
| --- a/appengine/findit/lib/gitiles/commit_util.py |
| +++ b/appengine/findit/lib/gitiles/commit_util.py |
| @@ -2,7 +2,11 @@ |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| +import json |
| +import logging |
| import re |
| +import subprocess |
| +import urllib2 |
|
chanli
2016/11/08 01:56:20
You have these imports but you don't use them?
Sharu Jiang
2016/11/11 00:29:05
Oops, cleaned up.
|
| CODE_REVIEW_URL_PATTERN = re.compile( |
| '^(?:Review URL|Review-Url): (.*\d+).*$', re.IGNORECASE) |