| Index: dashboard/dashboard/pinpoint/models/change.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/change.py b/dashboard/dashboard/pinpoint/models/change.py
|
| index 5222e47b633dca0f8f13355805cb592a1c9de693..62ef617dc7df0b174f0509819ee733201867003f 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
|
|
|
|
|