Fix tag syntax and spellings

Changes:
    - Tag mismatch fix
    - typo fixes

Tested: - NA
Change-Id: Ie90788fda83dff6c7867a924163ee1ab50f0916a
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/lib/external_intf/management_console_utils.py b/lib/external_intf/management_console_utils.py
index 5f02732..3c6d819 100644
--- a/lib/external_intf/management_console_utils.py
+++ b/lib/external_intf/management_console_utils.py
@@ -25,7 +25,7 @@
     Parse the BMC records to check for passed input.
 
     Description of arguments:
-    bmc_records            Contains the list of discoverd BMC records.
+    bmc_records            Contains the list of discovered BMC records.
     bmc_ip                 BMC ip address.
     """
 
@@ -144,7 +144,7 @@
 
     Description of arguments:
     service_type     Service type (e.g. RESTService, RedfishService).
-    bmc_records      Contains the list of discoverd BMC records.
+    bmc_records      Contains the list of discovered BMC records.
 
     This function will return this variable i.e.
     bmc_inv_list in dictionary form as mention below.
diff --git a/openpower/ext_interfaces/test_discovery.robot b/openpower/ext_interfaces/test_discovery.robot
index 9854eeb..d2e8a5f 100644
--- a/openpower/ext_interfaces/test_discovery.robot
+++ b/openpower/ext_interfaces/test_discovery.robot
@@ -112,7 +112,7 @@
 
 
 Discover BMC With Service Type
-    [Documentation]  To get the discoverd BMC list.
+    [Documentation]  To get the discovered BMC list.
     [Arguments]  ${service_type}
 
     # Description of argument(s):
diff --git a/openpower/ext_interfaces/test_vmi.robot b/openpower/ext_interfaces/test_vmi.robot
index 9591706..d701082 100644
--- a/openpower/ext_interfaces/test_vmi.robot
+++ b/openpower/ext_interfaces/test_vmi.robot
@@ -575,9 +575,9 @@
 
 
 Disable VMI DHCPv6 Property And Verify
-    [Documentation]  Disable VMI DHCPv6 property and verify IPv6 address origin is set to
-    ...  static and DHCPv6 address is erased.
-    [Tags]  Disable_VMI_DHCPv6_And_Verify
+    [Documentation]  Disable VMI DHCPv6 property and verify IPv6 address
+    ...              origin is set to static and DHCPv6 address is erased.
+    [Tags]  Disable_VMI_DHCPv6_Property_And_Verify
     [Setup]  Set VMI DHCPv6 Property  Enabled
 
     Set VMI DHCPv6 Property  Disabled
diff --git a/redfish/managers/test_bmc_network_protocol.robot b/redfish/managers/test_bmc_network_protocol.robot
index bbcabe2..49cedc1 100644
--- a/redfish/managers/test_bmc_network_protocol.robot
+++ b/redfish/managers/test_bmc_network_protocol.robot
@@ -102,7 +102,7 @@
 Verify NTP Server Is Not Populated In NetworkSuppliedServers
     [Documentation]  Patch NTP server and verify NTP servers is not populated
     ...  in NetworkSuppliedServers.
-    [Tags]  Verify_NTP_Server_Is_Not_Populated_In_NetworkSupppliedServers
+    [Tags]  Verify_NTP_Server_Is_Not_Populated_In_NetworkSuppliedServers
     [Setup]  Set NTP state  ${True}
 
     Redfish.Patch  ${REDFISH_NW_PROTOCOL_URI}
diff --git a/tools/github_issues_to_csv b/tools/github_issues_to_csv
index ce6e1e2..0928fbd 100755
--- a/tools/github_issues_to_csv
+++ b/tools/github_issues_to_csv
@@ -24,7 +24,7 @@
         raise Exception(response.status_code)
     for issue in response.json():
         if "pull_request" not in issue:
-            labels = ", ".join([lable["name"] for lable in issue["labels"]])
+            labels = ", ".join([label["name"] for label in issue["labels"]])
 
             # Below lines to overcome "TypeError: 'NoneType' object has
             # no attribute '__getitem__'"