summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2018-02-23 09:46:00 +0100
committerAnton Khirnov <anton@khirnov.net>2020-01-29 19:28:01 +0100
commitb241f96a1644a366f8cef6bfd5e7a1de1d11c706 (patch)
tree0e524e6236f060885f9a97b99c20e451ca813f2c /alot
parent09d7db6dc591fbe44058b0e01acae331c52f0b28 (diff)
thread: make the output of PipeCOmmand block
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index dbcfaa72..2ac3f335 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -727,7 +727,7 @@ class PipeCommand(Command):
stderr=subprocess.PIPE)
out, err = proc.communicate(encoded_mail)
if self.notify_stdout:
- ui.notify(out)
+ ui.notify(out, block = True)
else:
with ui.paused():
logging.debug('call: %s', self.cmd)