~zyga/checkbox/fix-1299748

« back to all changes in this revision

Viewing changes to plainbox/plainbox/impl/commands/list.py

  • Committer: Daniel Manrique
  • Author(s): Zygmunt Krynicki
  • Date: 2014-03-28 14:30:31 UTC
  • mfrom: (2840.2.1 launchpad/fix-1298944)
  • Revision ID: daniel_manrique-20140328143031-nyjt556x8ny088ge
"automatic merge by tarmac [r=roadmr][bug=1298944][author=zkrynicki]"

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
                for key, value in obj.attrs.items():
57
57
                    print("{}{}: {!r}".format(indent, key, value))
58
58
        if obj.children:
59
 
            if self.group is None or obj.group == self.group:
 
59
            if self.group is None:
60
60
                print("{}{}".format(indent, _("children")))
61
61
                indent += "  "
62
62
            for child in obj.children: