Fixes the bug in spack configure spotted in #6833 (#6837)

This commit is contained in:
Massimiliano Culpo 2018-01-05 22:07:51 +01:00 committed by Adam J. Stewart
parent d1aee2c2f2
commit d978cfbb1a

View File

@ -667,7 +667,7 @@ def child_process(child_pipe, input_stream):
except StopIteration as e:
# StopIteration is used to stop installations
# before the final stage, mainly for debug purposes
tty.msg(e.message)
tty.msg(e)
child_pipe.send(None)
except BaseException: