##// END OF EJS Templates
Skip plotting if an error raise
jespinoza -
r1121:14c0870adb40
parent child
Show More
@@ -421,8 +421,11 class PlotData(Operation, Process):
421 '''
421 '''
422 log.success('Plotting', self.name)
422 log.success('Plotting', self.name)
423
423
424 self.plot()
424 try:
425 self.format()
425 self.plot()
426 self.format()
427 except:
428 log.warning('{} Plot could not be updated... check data'.format(self.CODE), self.name)
426
429
427 for n, fig in enumerate(self.figures):
430 for n, fig in enumerate(self.figures):
428 if self.nrows == 0 or self.nplots == 0:
431 if self.nrows == 0 or self.nplots == 0:
General Comments 0
You need to be logged in to leave comments. Login now