diff options
author | Doug Zongker <dougz@android.com> | 2010-03-17 16:39:30 -0700 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2010-03-17 16:39:30 -0700 |
commit | 3475d362a771bcbbca23db527c399c0e5a67f576 (patch) | |
tree | 7acd09487a1dedebe24aa5e861e610b2aaf5b994 /tools | |
parent | 8c254825a062fd240566404d9d6ecc7cc56b30ba (diff) | |
download | build-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-x | tools/releasetools/ota_from_target_files | 2 |
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"): |