aboutsummaryrefslogtreecommitdiff
path: root/modules/git_webhooks
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git_webhooks')
-rw-r--r--modules/git_webhooks/__init__.py2
-rw-r--r--modules/git_webhooks/github.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/git_webhooks/__init__.py b/modules/git_webhooks/__init__.py
index b87f0665..44d9b5dc 100644
--- a/modules/git_webhooks/__init__.py
+++ b/modules/git_webhooks/__init__.py
@@ -138,7 +138,7 @@ class Module(ModuleManager.BaseModule):
if url:
if channel.get_setting("git-shorten-urls", False):
- url = self.exports.get_one("shorturl")(server, url,
+ url = self.exports.get("shorturl")(server, url,
context=channel) or url
output = "%s - %s" % (output, url)
diff --git a/modules/git_webhooks/github.py b/modules/git_webhooks/github.py
index 21b672ce..8bf61114 100644
--- a/modules/git_webhooks/github.py
+++ b/modules/git_webhooks/github.py
@@ -441,7 +441,7 @@ class GitHub(object):
url = ""
if data["check_run"]["details_url"]:
url = data["check_run"]["details_url"]
- url = " - %s" % self.exports.get_one("shorturl-any")(url)
+ url = " - %s" % self.exports.get("shorturl-any")(url)
duration = ""
if data["check_run"]["completed_at"]: