This commit is contained in:
arcanoroma 2012-07-13 09:50:41 +03:00
parent 162da75a04
commit 1e1c4bbb0d

View File

@ -73,7 +73,8 @@ class Dump:
def string(self, header, data, sort=True):
kb.stickyLevel = None
if type(data) is bool:
data = ("False", "True") [data]
if isListLike(data):
self.lister(header, data, sort)
elif data is not None: