summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-03-17 16:39:30 -0700
committerDoug Zongker <dougz@android.com>2010-03-17 16:39:30 -0700
commit3475d362a771bcbbca23db527c399c0e5a67f576 (patch)
tree7acd09487a1dedebe24aa5e861e610b2aaf5b994 /tools
parent8c254825a062fd240566404d9d6ecc7cc56b30ba (diff)
downloadbuild-3475d362a771bcbbca23db527c399c0e5a67f576.zip
build-3475d362a771bcbbca23db527c399c0e5a67f576.tar.gz
build-3475d362a771bcbbca23db527c399c0e5a67f576.tar.bz2
fix typo (leftover from some debugging code)
Change-Id: I29a42820ccf8567508f1aeefcc89c2462e9ad43c
Diffstat (limited to 'tools')
-rwxr-xr-xtools/releasetools/ota_from_target_files2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/releasetools/ota_from_target_files b/tools/releasetools/ota_from_target_files
index 0454d6f..ba29f9b 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"):