in releasedocmaker/src/main/python/releasedocmaker/jira.py [0:0]
def get_release_note(self):
""" get the release note field """
if self.notes is None:
field = self.parent.field_id_map['Release Note']
if field in self.fields:
self.notes = to_unicode(self.fields[field])
elif self.get_incompatible_change() or self.get_important():
self.notes = self.get_description()
else:
self.notes = ""
return self.notes