From 1294501a8bbd869ef24c88e5daebd50984527bdf Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Fri, 11 Jan 2013 14:17:22 +0200 Subject: [PATCH] Fix bug introdueced in f2ddf4db58fc537e66d60739d2a --- image_creator/bundle_volume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_creator/bundle_volume.py b/image_creator/bundle_volume.py index 0d642d5..c099daa 100644 --- a/image_creator/bundle_volume.py +++ b/image_creator/bundle_volume.py @@ -433,7 +433,7 @@ class BundleVolume(object): # Check if the available space is enough to host the image dirname = os.path.dirname(image) - self.out.output("Examining available space ..." % dirname, False) + self.out.output("Examining available space ...", False) if free_space(dirname) <= size: raise FatalError('Not enough space under %s to host the image' % dirname) -- 1.7.10.4