Show More
@@ -244,13 +244,13 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):' | |||
|
244 | 244 | # warn and transform into current syntax |
|
245 | 245 | argv = list(argv) # copy, don't clobber |
|
246 | 246 | warn.warn("`-pylab` flag has been deprecated.\n" |
|
247 | " Use `--pylab` instead, or `pylab=foo` to specify a backend.") | |
|
247 | " Use `--pylab` instead, or `--pylab=foo` to specify a backend.") | |
|
248 | 248 | sub = '--pylab' |
|
249 | 249 | if len(argv) > idx+1: |
|
250 | 250 | # check for gui arg, as in '-pylab qt' |
|
251 | 251 | gui = argv[idx+1] |
|
252 | 252 | if gui in ('wx', 'qt', 'qt4', 'gtk', 'auto'): |
|
253 | sub = 'pylab='+gui | |
|
253 | sub = '--pylab='+gui | |
|
254 | 254 | argv.pop(idx+1) |
|
255 | 255 | argv[idx] = sub |
|
256 | 256 |
General Comments 0
You need to be logged in to leave comments.
Login now