aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/wrap_cl.py
blob: c4c6f8bab359c554214b71019559c7ce15eb76c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Simple changelog entry formatter
#
# It simply uses the built in formatter and linewraps the text
#
# Use git-dch --customizations=/usr/share/doc/git-buildpackage/examples/wrap_cl.py
# or set it via gbp.conf

import textwrap
import gbp.dch


def format_changelog_entry(commit_info, options, last_commit=False):
    entry = gbp.dch.format_changelog_entry(commit_info, options, last_commit)
    if entry:
        return textwrap.wrap(" ".join(entry))