##// END OF EJS Templates
BUG: Make sure that PlainTextFormatter.pprint is given a real bool, not just 0 or 1.
Robert Kern -
Show More
@@ -443,7 +443,7 b' class IPythonApp(Application):'
443 443 if hasattr(config.Global, 'classic'):
444 444 if config.Global.classic:
445 445 config.InteractiveShell.cache_size = 0
446 config.PlainTextFormatter.pprint = 0
446 config.PlainTextFormatter.pprint = False
447 447 config.InteractiveShell.prompt_in1 = '>>> '
448 448 config.InteractiveShell.prompt_in2 = '... '
449 449 config.InteractiveShell.prompt_out = ''
General Comments 0
You need to be logged in to leave comments. Login now