2
0
mirror of https://opendev.org/x/pyghmi synced 2025-03-19 18:07:45 +00:00

Merge "Closes-Bug: 1887953"

This commit is contained in:
Zuul 2020-07-20 20:20:01 +00:00 committed by Gerrit Code Review
commit 2f6c3430c6

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?