Minor bugfix to get NestedLDTable properly laid out..

This commit is contained in:
Vincent S. Cojot 2017-01-11 12:04:55 -05:00
parent cbbafa309d
commit 89a7eb0982

View File

@ -33,7 +33,7 @@ totaldrivenumber = 0
MaxNumHBA = 16
MaxNumLD = 128
LDTable = [ [] * MaxNumHBA for i in range(MaxNumLD) ]
NestedLDTable = [[False for i in range(MaxNumHBA)] for j in range(MaxNumLD)]
NestedLDTable = [[False for i in range(MaxNumLD)] for j in range(MaxNumHBA)]
# Outputs is a 'dict' of all MegaCLI outputs so we can re-use them during loops..
Outputs = {}