jwack: fix a typo in the "wrong number of tokens on exit" error.
Not that we ever see that error, except when I'm screwing around.
This commit is contained in:
parent
49ebea445f
commit
18b5263db7
1 changed files with 2 additions and 2 deletions
4
jwack.py
4
jwack.py
|
|
@ -171,8 +171,8 @@ def wait_all():
|
|||
bb += b
|
||||
if not b: break
|
||||
if len(bb) != _toplevel-1:
|
||||
raise Exception('on exit: expected %d tokens; found only %d'
|
||||
% (_toplevel-1, len(b)))
|
||||
raise Exception('on exit: expected %d tokens; found only %r'
|
||||
% (_toplevel-1, len(bb)))
|
||||
os.write(_fds[1], bb)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue