##// 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 if hasattr(config.Global, 'classic'):
443 if hasattr(config.Global, 'classic'):
444 if config.Global.classic:
444 if config.Global.classic:
445 config.InteractiveShell.cache_size = 0
445 config.InteractiveShell.cache_size = 0
446 config.PlainTextFormatter.pprint = 0
446 config.PlainTextFormatter.pprint = False
447 config.InteractiveShell.prompt_in1 = '>>> '
447 config.InteractiveShell.prompt_in1 = '>>> '
448 config.InteractiveShell.prompt_in2 = '... '
448 config.InteractiveShell.prompt_in2 = '... '
449 config.InteractiveShell.prompt_out = ''
449 config.InteractiveShell.prompt_out = ''
General Comments 0
You need to be logged in to leave comments. Login now