diff options
Diffstat (limited to 'subcmds')
-rw-r--r-- | subcmds/sync.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index a0a68960..b50df099 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -292,7 +292,9 @@ later is required to fix a server side protocol bug. | |||
292 | pm.update() | 292 | pm.update() |
293 | except _FetchError: | 293 | except _FetchError: |
294 | err_event.set() | 294 | err_event.set() |
295 | except: | 295 | except Exception as e: |
296 | print('error: Cannot fetch %s (%s: %s)' \ | ||
297 | % (project.name, type(e).__name__, str(e)), file=sys.stderr) | ||
296 | err_event.set() | 298 | err_event.set() |
297 | raise | 299 | raise |
298 | finally: | 300 | finally: |