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/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__'"