From: Artem Bityutskiy Date: Tue, 13 Aug 2013 10:38:50 +0000 (+0300) Subject: BmapCopy: fix a typo in error message X-Git-Tag: v2.6~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7b5c3645ef47b4da62f649581c4b16effc9011b;p=tools%2Fbmap-tools.git BmapCopy: fix a typo in error message ... add a missing whitespace. Change-Id: I8d713263de9899ff314d83e69aae9f3a672c3285 Signed-off-by: Artem Bityutskiy --- 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))