| Index: dashboard/dashboard/pinpoint/models/change.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/change.py b/dashboard/dashboard/pinpoint/models/change.py
|
| index 362fbe98575bc89715af36f0f45f9fcbc9c7ed90..681a73ca20e23e5ea5f2a961c6055e9e89e5eb2a 100644
|
| --- a/dashboard/dashboard/pinpoint/models/change.py
|
| +++ b/dashboard/dashboard/pinpoint/models/change.py
|
| @@ -235,7 +235,7 @@ class Dep(collections.namedtuple('Dep', ('repository', 'git_hash'))):
|
| try:
|
| gitiles_service.CommitInfo(dep.repository_url, dep.git_hash)
|
| except gitiles_service.NotFoundError as e:
|
| - raise KeyError(e)
|
| + raise KeyError(str(e))
|
|
|
| return dep
|
|
|
|
|