From b43ac8fc2fbb3530212a613108c2492969e33146 Mon Sep 17 00:00:00 2001 From: Michael Chan Date: Wed, 19 Jan 2011 21:12:41 -0800 Subject: [PATCH] Fix build break Change-Id: Ie07f042a9f25bf3329cf2cea8fdeea3e208da775 --- tools/releasetools/edify_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/releasetools/edify_generator.py b/tools/releasetools/edify_generator.py index 751146508..4ed1a076d 100644 --- a/tools/releasetools/edify_generator.py +++ b/tools/releasetools/edify_generator.py @@ -176,7 +176,7 @@ class EdifyGenerator(object): if partition == "/data" and common.PARTITION_TYPES[p.fs_type] == "EMMC": reserve_size = -16384 self.script.append('format("%s", "%s", "%s", "%s");' % - (p.fs_type, common.PARTITION_TYPES[p.fs_type], p.device, reserve_size) + (p.fs_type, common.PARTITION_TYPES[p.fs_type], p.device, reserve_size)) else: # older target-files without per-partition types partition = self.info.get("partition_path", "") + partition