diff options
author | Bla Fasel <agx@sigxcpu.org> | 2014-08-11 01:29:26 +0200 |
---|---|---|
committer | Bla Fasel <agx@sigxcpu.org> | 2014-08-11 01:29:26 +0200 |
commit | 688c7c3db3d5e1e04c9dfde01394d5e7fcb20dec (patch) | |
tree | fc94756258e5d836ca3fce92beba0cd30ea29ce3 | |
parent | 692e5da2efa8f691a75200cf16df06112ffad435 (diff) | |
download | git-buildpackage-688c7c3db3d5e1e04c9dfde01394d5e7fcb20dec.tar.gz git-buildpackage-688c7c3db3d5e1e04c9dfde01394d5e7fcb20dec.tar.bz2 git-buildpackage-688c7c3db3d5e1e04c9dfde01394d5e7fcb20dec.zip |
Brown paper bag, please
Gbp-Dch: Ignore
-rw-r--r-- | gbp/scripts/dch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py index 20a7b1b5..c6172698 100644 --- a/gbp/scripts/dch.py +++ b/gbp/scripts/dch.py @@ -76,7 +76,7 @@ def fixup_section(repo, git_author, options, dch_options): author, email = get_author_email(repo, git_author) used_options = ['distribution', 'urgency'] opts = [] - maintrailer_opts = [ '--nomainttrailer', '--mainttrailer', '-t' ] + mainttrailer_opts = [ '--nomainttrailer', '--mainttrailer', '-t' ] # This must not be done for snapshots or snapshots changelog entries # will not be concatenated @@ -93,7 +93,7 @@ def fixup_section(repo, git_author, options, dch_options): if opt in dch_options: break else: - opts.append(maintrailer_opts[0]) + opts.append(mainttrailer_opts[0]) ChangeLog.spawn_dch(msg='', author=author, email=email, dch_options=dch_options+opts) |