Home | History | Annotate | Download | only in command

Lines Matching refs:changelog

69         ('changelog=', None,
70 "RPM changelog"),
158 self.changelog = None
239 self.ensure_string('changelog')
240 # Format changelog correctly
241 self.changelog = self._format_changelog(self.changelog)
276 print "changelog =", self.changelog
554 if self.changelog:
557 '%changelog',])
558 spec_file.extend(self.changelog)
564 def _format_changelog(self, changelog):
565 """Format the changelog correctly and convert it to a list of strings
567 if not changelog:
568 return changelog
570 for line in string.split(string.strip(changelog), '\n'):
579 # strip trailing newline inserted by first changelog entry