Replace --pylab='inline' with --pylab='auto
(self, name, old, new)
| 341 | if self.log_level <= logging.INFO: print() |
| 342 | |
| 343 | def _pylab_changed(self, name, old, new): |
| 344 | """Replace --pylab='inline' with --pylab='auto'""" |
| 345 | if new == 'inline': |
| 346 | warnings.warn("'inline' not available as pylab backend, " |
| 347 | "using 'auto' instead.") |
| 348 | self.pylab = 'auto' |
| 349 | |
| 350 | def start(self): |
| 351 | if self.subapp is not None: |