From 3475d362a771bcbbca23db527c399c0e5a67f576 Mon Sep 17 00:00:00 2001 From: Doug Zongker Date: Wed, 17 Mar 2010 16:39:30 -0700 Subject: [PATCH] fix typo (leftover from some debugging code) Change-Id: I29a42820ccf8567508f1aeefcc89c2462e9ad43c --- tools/releasetools/ota_from_target_files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/releasetools/ota_from_target_files b/tools/releasetools/ota_from_target_files index 0454d6ffc9..ba29f9b21d 100755 --- a/tools/releasetools/ota_from_target_files +++ b/tools/releasetools/ota_from_target_files @@ -153,7 +153,7 @@ class Item: suffix = { False: "", True: "/" } input = "".join(["%s%s\n" % (i.name, suffix[i.dir]) for i in cls.ITEMS.itervalues() if i.name]) - output2, error = p.communicate(input) + output, error = p.communicate(input) assert not error for line in output.split("\n"):