Updates the error message.

This commit is contained in:
joeldudleyr3 2017-09-01 10:07:34 +01:00
parent ebbca94d67
commit 54e302608f

View File

@ -294,7 +294,7 @@ object InteractiveShell {
}
val flow = ctor.newInstance(*args) as FlowLogic<*>
if (flow.progressTracker == null) {
errors.add("You must override the flow's progress tracker to run it from the shell")
errors.add("A flow must override the progress tracker in order to be run from the shell")
continue
}
return invoke(flow)