diff options
| author | 2019-01-16 22:32:17 +0000 | |
|---|---|---|
| committer | 2019-01-16 22:32:17 +0000 | |
| commit | 5bf603bbfa02c8dffbbbf2b514530da1fc39be06 (patch) | |
| tree | af6333eb5f75922c637a74d90da5fefe34362fc0 | |
| parent | Don'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.py | 2 |
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) |
