##// END OF EJS Templates
Fix missing argument in _make_info_unformatted
Jason Grout -
Show More
@@ -588,7 +588,7 b' class Inspector(Colorable):'
588 bundle["text/plain"].append((title, formatted_field["text/plain"]))
588 bundle["text/plain"].append((title, formatted_field["text/plain"]))
589 bundle["text/html"].append((title, formatted_field["text/html"]))
589 bundle["text/html"].append((title, formatted_field["text/html"]))
590
590
591 def _make_info_unformatted(self, info, formatter, detail_level, omit_sections):
591 def _make_info_unformatted(self, obj, info, formatter, detail_level, omit_sections):
592 """Assemble the mimebundle as unformatted lists of information"""
592 """Assemble the mimebundle as unformatted lists of information"""
593 bundle = {
593 bundle = {
594 "text/plain": [],
594 "text/plain": [],
@@ -685,7 +685,7 b' class Inspector(Colorable):'
685
685
686 info = self.info(obj, oname=oname, info=info, detail_level=detail_level)
686 info = self.info(obj, oname=oname, info=info, detail_level=detail_level)
687 bundle = self._make_info_unformatted(
687 bundle = self._make_info_unformatted(
688 info, formatter, detail_level=detail_level, omit_sections=omit_sections
688 obj, info, formatter, detail_level=detail_level, omit_sections=omit_sections
689 )
689 )
690 return self.format_mime(bundle)
690 return self.format_mime(bundle)
691
691
General Comments 0
You need to be logged in to leave comments. Login now