|
@@ -228,6 +228,9 @@ later is required to fix a server side protocol bug.
|
|
|
# We'll set to true once we've locked the lock.
|
|
# We'll set to true once we've locked the lock.
|
|
|
did_lock = False
|
|
did_lock = False
|
|
|
|
|
|
|
|
|
|
+ if not opt.quiet:
|
|
|
|
|
+ print('Fetching project %s' % project.name)
|
|
|
|
|
+
|
|
|
# Encapsulate everything in a try/except/finally so that:
|
|
# Encapsulate everything in a try/except/finally so that:
|
|
|
# - We always set err_event in the case of an exception.
|
|
# - We always set err_event in the case of an exception.
|
|
|
# - We always make sure we call sem.release().
|
|
# - We always make sure we call sem.release().
|
|
@@ -274,6 +277,8 @@ later is required to fix a server side protocol bug.
|
|
|
if self.jobs == 1:
|
|
if self.jobs == 1:
|
|
|
for project in projects:
|
|
for project in projects:
|
|
|
pm.update()
|
|
pm.update()
|
|
|
|
|
+ if not opt.quiet:
|
|
|
|
|
+ print('Fetching project %s' % project.name)
|
|
|
if project.Sync_NetworkHalf(
|
|
if project.Sync_NetworkHalf(
|
|
|
quiet=opt.quiet,
|
|
quiet=opt.quiet,
|
|
|
current_branch_only=opt.current_branch_only,
|
|
current_branch_only=opt.current_branch_only,
|