aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/dch.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/dch.py')
-rw-r--r--gbp/dch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/dch.py b/gbp/dch.py
index c481c16f..ddd5e8e9 100644
--- a/gbp/dch.py
+++ b/gbp/dch.py
@@ -119,7 +119,7 @@ def format_changelog_entry(commit_info, options, last_commit=False):
(thanks, body) = extract_thanks_info(body, options)
body = filter_ignore_rx_matches(body, options)
- if options.full and not 'short' in git_dch_cmds:
+ if 'full' in git_dch_cmds or (options.full and not 'short' in git_dch_cmds):
# Add all non-blank body lines.
entry.extend([line for line in body if line.strip()])
if thanks: