dch: Only modify the mainttrailer when --git-author is in use
authorBla Fasel <agx@sigxcpu.org>
Mon, 11 Aug 2014 09:09:32 +0000 (11:09 +0200)
committerBla Fasel <agx@sigxcpu.org>
Mon, 11 Aug 2014 09:09:32 +0000 (11:09 +0200)
gbp/scripts/dch.py

index 4933388..126f3b7 100644 (file)
@@ -89,11 +89,12 @@ def fixup_section(repo, use_git_author, options, dch_options):
     else:
         gbp.log.debug("Snapshot enabled: do not fixup options in header")
 
-    for opt in mainttrailer_opts:
-        if opt in dch_options:
-            break
-    else:
-        opts.append(mainttrailer_opts[0])
+    if use_git_author:
+        for opt in mainttrailer_opts:
+            if opt in dch_options:
+                break
+        else:
+            opts.append(mainttrailer_opts[0])
     ChangeLog.spawn_dch(msg='', author=author, email=email, dch_options=dch_options+opts)