From 035759317c9880b71dd64b19fe48a44a7d2e2f01 Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Mon, 14 Apr 2008 16:05:54 +0200 Subject: [PATCH] fix "pristine-tar missing" error message --- gbp/command_wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.34.1