##// END OF EJS Templates
add colon to header block in oinspect output...
Min RK -
Show More
@@ -607,7 +607,7 b' class Inspector(Colorable):'
607 607 field = info[key]
608 608 if field is not None:
609 609 formatted_field = self._mime_format(field, formatter)
610 bundle['text/plain'] += self.__head(title) + ':\n' + formatted_field['text/plain'] + '\n'
610 bundle['text/plain'] += self.__head(title + ':') + '\n' + formatted_field['text/plain'] + '\n'
611 611 bundle['text/html'] += '<h1>' + title + '</h1>\n' + formatted_field['text/html'] + '\n'
612 612
613 613 def code_formatter(text):
General Comments 0
You need to be logged in to leave comments. Login now