BmapCopy: fix a typo in error message
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 13 Aug 2013 10:38:50 +0000 (13:38 +0300)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 13 Aug 2013 10:50:09 +0000 (13:50 +0300)
... add a missing whitespace.

Change-Id: I8d713263de9899ff314d83e69aae9f3a672c3285
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
bmaptools/BmapCopy.py

index 622fd49..4a9c8cc 100644 (file)
@@ -541,7 +541,7 @@ class BmapCopy:
         # 'mapped_cnt' blocks.
         if blocks_written != self.mapped_cnt:
             raise Error("wrote %u blocks from image '%s' to '%s', but should "
-                        "have %u - bmap file '%s' does not belong to this"
+                        "have %u - bmap file '%s' does not belong to this "
                         "image"
                         % (blocks_written, self._image_path, self._dest_path,
                            self.mapped_cnt, self._bmap_path))