aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-04-14 16:05:54 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-04-14 16:05:54 +0200
commit035759317c9880b71dd64b19fe48a44a7d2e2f01 (patch)
tree2cc88644db0a0a9c50750a53b6462e7900d3205e
parent48037501284904e26171a9e5df8d45a06663a744 (diff)
fix "pristine-tar missing" error message
-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 36dd5be2..394aa278 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -79,7 +79,7 @@ class PristineTar(Command):
def __init__(self):
if not os.access(self.cmd, os.X_OK):
- raise GbpError, "%s not found - cannot use pristine-tar"
+ raise GbpError, "%s not found - cannot use pristine-tar" % self.cmd
Command.__init__(self, self.cmd)
def commit(self, archive, branch):