##// END OF EJS Templates
little bug fixed in pyout message print.
Omar Andres Zapata Mesa -
Show More
@@ -191,7 +191,7 b' class Frontend(object):'
191 sys.stderr.flush()
191 sys.stderr.flush()
192
192
193 if sub_msg['msg_type'] == 'pyout' :
193 if sub_msg['msg_type'] == 'pyout' :
194 print >> sys.stdout,"Out[%i]:"%sub_msg["content"]["execution_count"], sub_msg["content"]["data"]
194 print >> sys.stdout,"Out[%i]:"%sub_msg["content"]["execution_count"], sub_msg["content"]["data"]["text/plain"]
195 sys.stdout.flush()
195 sys.stdout.flush()
196
196
197 def handle_rep_channel(self):
197 def handle_rep_channel(self):
General Comments 0
You need to be logged in to leave comments. Login now