mirror of
https://github.com/vale981/jobmanager
synced 2025-03-06 10:21:39 -05:00
minor bugfix to push to tqo
This commit is contained in:
parent
83b3ab106d
commit
5759b6c698
1 changed files with 5 additions and 4 deletions
|
@ -173,12 +173,13 @@ class PersistentDataStructure(object):
|
||||||
else:
|
else:
|
||||||
oth_key += 1
|
oth_key += 1
|
||||||
|
|
||||||
print("{}: number of string keys:".format(prepend, str_key))
|
print("{}: number of string keys: {}".format(prepend, str_key))
|
||||||
print("{}: number of byte keys:".format(prepend, bin_key))
|
print("{}: number of byte keys: {}".format(prepend, bin_key))
|
||||||
if oth_key > 0:
|
if oth_key > 0:
|
||||||
print("{}: number of other keys:".format(prepend, oth_key))
|
print("{}: number of other keys: {}".format(prepend, oth_key))
|
||||||
print("{}: number of subdata: {}".format(prepend, len(self.sub_data_keys)))
|
print("{}: number of subdata: {}".format(prepend, len(self.sub_data_keys)))
|
||||||
|
print()
|
||||||
|
sys.stdout.flush()
|
||||||
if recursive:
|
if recursive:
|
||||||
for k in self.sub_data_keys:
|
for k in self.sub_data_keys:
|
||||||
with self.getData(k) as subdata:
|
with self.getData(k) as subdata:
|
||||||
|
|
Loading…
Add table
Reference in a new issue