aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-16 22:32:17 +0000
committerGravatar jesopo2019-01-16 22:32:17 +0000
commit5bf603bbfa02c8dffbbbf2b514530da1fc39be06 (patch)
treeaf6333eb5f75922c637a74d90da5fefe34362fc0
parentDon't try to parse username and repo name from a full name if there's no full (diff)
signature
typo, 'respository' -> 'repository' (github.py)
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index 4f893c5e..daca8f1f 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -128,7 +128,7 @@ class Module(ModuleManager.BaseModule):
full_name = None
repo_username = None
repo_name = None
- if "respository" in data:
+ if "repository" in data:
full_name = data["repository"]["full_name"]
repo_username, repo_name = full_name.split("/", 1)