Typo in modules/github.py ('command' -> 'commit') and declare event_response
outside of try/except in modules/rest_api.py
This commit is contained in:
parent
c3ace4be2e
commit
908edeb1e1
2 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
full_name = data["repository"]["full_name"]
|
full_name = data["repository"]["full_name"]
|
||||||
|
|
||||||
for commit in data["commits"]:
|
for commit in data["commits"]:
|
||||||
id = command["id"]
|
id = commit["id"]
|
||||||
message = commit["message"]
|
message = commit["message"]
|
||||||
author = "%s <%s>" % (commit["author"]["username"],
|
author = "%s <%s>" % (commit["author"]["username"],
|
||||||
commit["author"]["email"])
|
commit["author"]["email"])
|
||||||
|
|
|
@ -27,6 +27,7 @@ class Handler(http.server.BaseHTTPRequestHandler):
|
||||||
code = 401
|
code = 401
|
||||||
else:
|
else:
|
||||||
if path.startswith("/api/"):
|
if path.startswith("/api/"):
|
||||||
|
event_response = None
|
||||||
try:
|
try:
|
||||||
event_response = _events.on("api").on(method).on(
|
event_response = _events.on("api").on(method).on(
|
||||||
endpoint).call_unsafe_for_result(
|
endpoint).call_unsafe_for_result(
|
||||||
|
|
Loading…
Reference in a new issue