Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3475d362 authored by Doug Zongker's avatar Doug Zongker
Browse files

fix typo (leftover from some debugging code)

Change-Id: I29a42820ccf8567508f1aeefcc89c2462e9ad43c
parent 8c254825
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"):