Catch errors from tree_status

Fixes #341
This commit is contained in:
ZyX 2014-08-24 17:46:11 +04:00
parent 10665f4c7d
commit 2d4897d5dd
1 changed files with 5 additions and 1 deletions

View File

@ -69,7 +69,11 @@ def branch(pl, segment_info, create_watcher, status_colors=False):
branch = repo.branch()
scol = ['branch']
if status_colors:
status = tree_status(repo, pl)
try:
status = tree_status(repo, pl)
except Exception as e:
pl.exception('Failed to compute tree status: {0}', str(e))
status = '?'
scol.insert(0, 'branch_dirty' if status and status.strip() else 'branch_clean')
return [{
'contents': branch,