Show More
@@ -391,9 +391,10 b' class AsyncResult(object):' | |||
|
391 | 391 | |
|
392 | 392 | |
|
393 | 393 | def _display_single_result(self): |
|
394 | ||
|
395 | print self.stdout | |
|
396 |
|
|
|
394 | if self.stdout: | |
|
395 | print self.stdout | |
|
396 | if self.stderr: | |
|
397 | print >> sys.stderr, self.stderr | |
|
397 | 398 | |
|
398 | 399 | try: |
|
399 | 400 | get_ipython() |
General Comments 0
You need to be logged in to leave comments.
Login now