From a7b5c3645ef47b4da62f649581c4b16effc9011b Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Tue, 13 Aug 2013 13:38:50 +0300 Subject: [PATCH] BmapCopy: fix a typo in error message ... add a missing whitespace. Change-Id: I8d713263de9899ff314d83e69aae9f3a672c3285 Signed-off-by: Artem Bityutskiy --- bmaptools/BmapCopy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmaptools/BmapCopy.py b/bmaptools/BmapCopy.py index 622fd49..4a9c8cc 100644 --- a/bmaptools/BmapCopy.py +++ b/bmaptools/BmapCopy.py @@ -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)) -- 2.7.4