diff --git a/devel_doc/git-changelog b/devel_doc/git-changelog index 9bb04ac..6273f95 100755 --- a/devel_doc/git-changelog +++ b/devel_doc/git-changelog @@ -158,7 +158,6 @@ class PlainLog(object): if not self.no_preamble: out = [self._format_preamble(), ''] changesets = self.changesets - last = len(SECTIONS) - 1 for section in SECTIONS: heading = self._format_section(section) if section not in changesets: @@ -171,6 +170,7 @@ class PlainLog(object): out.append('') return '\n'.join(out) + class MarkdownLog(PlainLog): def __init__(self, range, devel, empty, no_preamble, width, refresh, quiet, level, *args, **kwargs):