diff options
author | Stef Walter <stef@thewalter.net> | 2008-06-06 17:40:53 +0000 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2008-06-06 17:40:53 +0000 |
commit | 089fc82089164ba70b3c9cb6d439e44f88adeaae (patch) | |
tree | 1319ad09a46928b860721bd4950869ed0b7bf5d0 | |
parent | ea4a294b84254fb19b2edd24683fa6501970d049 (diff) |
Show subordinates properly
-rw-r--r-- | Pivot.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ class Database(Backend.Database): # Note that we don't access 'tags' unless attributes requested if any_attrs: - attrs["hasSubordinates"].append(tags and "FALSE" or "TRUE") + attrs["hasSubordinates"].append(tags and "TRUE" or "FALSE") return (self.suffix, attrs) |