From 6c74fb0fb0993ae8ae1a7aa62ec58e57c0080686 Mon Sep 17 00:00:00 2001 From: Jason Albert Date: Thu, 3 Aug 2017 15:15:57 -0500 Subject: [PATCH] Rename addon AddBMCType function to addBMCType - addBMCType is the documented name, this fixes case mixup I caused Signed-off-by: Jason Albert Signed-off-by: Stewart Smith --- OpTestConfiguration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpTestConfiguration.py b/OpTestConfiguration.py index af76d3641..5be8ceef7 100644 --- a/OpTestConfiguration.py +++ b/OpTestConfiguration.py @@ -66,7 +66,7 @@ def parse_args(self, argv=None): bmcChoices = ['AMI','FSP', 'OpenBMC', 'qemu'] # Loop through any addons let it append the extra bmcChoices for opt in optAddons: - bmcChoices = optAddons[opt].AddBMCType(bmcChoices) + bmcChoices = optAddons[opt].addBMCType(bmcChoices) bmcgroup.add_argument("--bmc-type", choices=bmcChoices, help="Type of service processor")