Merge "Emit project info in case of sync exception."

This commit is contained in:
Conley Owens 2015-07-31 17:06:23 +00:00 committed by Gerrit Code Review
commit 555be54790

View File

@ -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: