fix "pristine-tar missing" error message
authorGuido Guenther <agx@sigxcpu.org>
Mon, 14 Apr 2008 14:05:54 +0000 (16:05 +0200)
committerGuido Guenther <agx@sigxcpu.org>
Mon, 14 Apr 2008 14:05:54 +0000 (16:05 +0200)
gbp/command_wrappers.py

index 36dd5be2c24f3dc24c0a20830fb9d2be1ded5862..394aa278b56cc4063321835fc1b320312f897550 100644 (file)
@@ -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):