Closes-Bug: 1887953

Change-Id: I057ce1cdf978f6e965e3f7a37950b01a51d7349c
This commit is contained in:
Logan Blyth 2020-07-20 15:09:19 -04:00
parent ba05b8f883
commit dc98520469
1 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ understand how the ipmi_command class workes.
import functools
import os
import string
import sys
from pyghmi.ipmi import command
@ -77,7 +76,7 @@ def main():
bmc = sys.argv[1]
userid = sys.argv[2]
bmcs = string.split(bmc, ",")
bmcs = bmc.split(',')
ipmicmd = None
for bmc in bmcs:
# NOTE(etingof): is it right to have `ipmicmd` overridden?