|
@@ -275,8 +275,9 @@ class MultiTool(object):
|
|
|
def note_waiting():
|
|
|
left = len(P)
|
|
|
if left:
|
|
|
- self.note(self.colored.blue('> Waiting for {0} {1}...'.format(
|
|
|
- left, pluralize(left, 'node'))), newline=False)
|
|
|
+ pids = ', '.join(str(pid) for _, _, pid in P)
|
|
|
+ self.note(self.colored.blue('> Waiting for {0} {1} -> {2}...'.format(
|
|
|
+ left, pluralize(left, 'node'), pids)), newline=False)
|
|
|
|
|
|
if retry:
|
|
|
note_waiting()
|