From 5bf603bbfa02c8dffbbbf2b514530da1fc39be06 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 16 Jan 2019 22:32:17 +0000 Subject: [PATCH] typo, 'respository' -> 'repository' (github.py) --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)