def get_config_map(self, module):
		return [
			(
				item.c_str(), 
				convert_rtf_to_html(try_unicode(value.c_str(), module))
			)
			for item, value in module.getConfigMap().items()
			if item.c_str() not in self.config_entries_to_ignore
		]
 def get_config_map(self, module):
     return [(item.c_str(),
              convert_rtf_to_html(try_unicode(value.c_str(), module)))
             for item, value in module.getConfigMap().items()
             if item.c_str() not in self.config_entries_to_ignore]
 def get_formatted_config_entry(self, module, entry):
     value = module.getConfigEntry(entry)
     return convert_rtf_to_html(try_unicode(value, module))
	def get_formatted_config_entry(self, module, entry):
		value = module.getConfigEntry(entry)
		return convert_rtf_to_html(try_unicode(value, module))