fix missing flush() calls
This commit is contained in:
parent
5a8509ab75
commit
7fa04fe1d2
5 changed files with 14 additions and 1 deletions
|
|
@ -76,6 +76,7 @@ class Boobank(ReplApplication):
|
|||
|
||||
for backend, operation in self.do(do, backends=names):
|
||||
self.format(operation)
|
||||
self.flush()
|
||||
|
||||
def complete_coming(self, text, line, *ignored):
|
||||
args = line.split(' ')
|
||||
|
|
@ -97,6 +98,7 @@ class Boobank(ReplApplication):
|
|||
|
||||
for backend, operation in self.do(do, backends=names):
|
||||
self.format(operation)
|
||||
self.flush()
|
||||
|
||||
def complete_transfer(self, text, line, *ignored):
|
||||
args = line.split(' ')
|
||||
|
|
@ -129,3 +131,4 @@ class Boobank(ReplApplication):
|
|||
|
||||
for backend, id_transfer in self.do(do, backends=names):
|
||||
self.format((('Transfer', str(id_transfer)),))
|
||||
self.flush()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue