Merge "Emit project info in case of sync exception."
This commit is contained in:
commit
555be54790
1 changed files with 3 additions and 1 deletions
|
@ -314,7 +314,9 @@ later is required to fix a server side protocol bug.
|
|||
pm.update()
|
||||
except _FetchError:
|
||||
err_event.set()
|
||||
except:
|
||||
except Exception as e:
|
||||
print('error: Cannot fetch %s (%s: %s)' \
|
||||
% (project.name, type(e).__name__, str(e)), file=sys.stderr)
|
||||
err_event.set()
|
||||
raise
|
||||
finally:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue