aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/command_wrappers.py
diff options
context:
space:
mode:
authorEvgeni Golov <evgeni@debian.org>2015-06-27 17:59:12 +0200
committerGuido Günther <agx@sigxcpu.org>2015-06-30 08:44:10 +0200
commitdf215f320f3b9a79bf3676feaba7fdf5118469c2 (patch)
tree7d8b94cb131b8797973ae1b58f56e53f2190bef4 /gbp/command_wrappers.py
parenta331b7f127c11fa0ecc6931660a906e2d906658b (diff)
call debchange instead of dch
Call the tool by its actual name instead of the abbriviation. dch is a symlink to debchange, which is not present on Fedora [1]. [1] https://bugzilla.redhat.com/show_bug.cgi?id=1236122 Signed-off-by: Guido Günther <agx@sigxcpu.org>
Diffstat (limited to 'gbp/command_wrappers.py')
-rw-r--r--gbp/command_wrappers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 80686662..d3a0c0a9 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -260,7 +260,7 @@ class Dch(Command):
args = ['-v', version]
if msg:
args.append(msg)
- Command.__init__(self, 'dch', args)
+ Command.__init__(self, 'debchange', args)
self.run_error = "Dch failed: {err_reason}"