Commit 204f89d4 by Diana Huang

Make sure we are still showing the

message when we are queued as well.
parent af1af8c6
...@@ -655,7 +655,7 @@ class MatlabInput(CodeInput): ...@@ -655,7 +655,7 @@ class MatlabInput(CodeInput):
# Check if problem has been queued # Check if problem has been queued
self.queuename = 'matlab' self.queuename = 'matlab'
self.queue_msg = '' self.queue_msg = ''
if 'queue_msg' in self.input_state and self.status in ['incomplete', 'unsubmitted']: if 'queue_msg' in self.input_state and self.status in ['queued','incomplete', 'unsubmitted']:
self.queue_msg = self.input_state['queue_msg'] self.queue_msg = self.input_state['queue_msg']
if 'queued' in self.input_state and self.input_state['queuestate'] is not None: if 'queued' in self.input_state and self.input_state['queuestate'] is not None:
self.status = 'queued' self.status = 'queued'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment