Merge "fix typo (leftover from some debugging code)"

This commit is contained in:
Doug Zongker 2010-03-17 17:46:58 -07:00 committed by Android (Google) Code Review
commit 7afc97120b
1 changed files with 1 additions and 1 deletions

View File

@ -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"):