2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 19:10:10 +00:00

Actually fix the verbose range

This commit is contained in:
Jarrod Johnson 2019-04-26 16:29:33 -04:00
parent 36f0d888cd
commit 7a08fee4b5

View File

@ -108,12 +108,14 @@ if args.v and n is not None and nodebydatum:
currbinmembers = []
for datum in sorted(nodebydatum):
if datum > bins[0]:
while bins[0] < datum:
nextbin = None
while len(bins) and bins[0] < datum:
nextbin = bins[0]
bins = bins[1:]
print('Entries between {0} and {1}'.format(currbin, bins[0]))
if not nextbin:
nextbin = np.max(plotdata)
print('Entries between {0} and {1}'.format(currbin, nextbin))
print('-' * 80)
currbin = bins[0] if len(bins) else np.max(plotdata)
bins = bins[1:]
print(','.join(sorted(currbinmembers)))
print('')
print('')