##// END OF EJS Templates
Fix test, add highlight_source to ConverterPy....
David Warde-Farley -
Show More
@@ -44,8 +44,13 b' class ConverterPy(Converter):'
44 """
44 """
45 extension = 'py'
45 extension = 'py'
46
46
47 def __init__(self, infile, show_prompts=True, show_output=True):
47 def __init__(self, infile, highlight_source=False, show_prompts=True,
48 super(ConverterPy, self).__init__(infile)
48 show_output=True):
49 # Note that highlight_source is meaningless here, so even if it
50 # is passed as True we ignore it and propagate False to the
51 # superclass.
52 super(ConverterPy, self).__init__(infile,
53 highlight_source=False)
49 self.show_prompts = show_prompts
54 self.show_prompts = show_prompts
50 self.show_output = show_output
55 self.show_output = show_output
51
56
General Comments 0
You need to be logged in to leave comments. Login now