diff options
| author | 2019-05-18 11:07:42 +0100 | |
|---|---|---|
| committer | 2019-05-18 11:07:42 +0100 | |
| commit | 0a8968281619cacf1de72e07a89d5034400f2373 (patch) | |
| tree | e5f5042deae33f4b3ac7a1bca051b7be84ed31d4 /modules/github | |
| parent | Catch github urls in auto-github (diff) | |
| signature | ||
`match.group(0)` -> `ref`
Diffstat (limited to 'modules/github')
| -rw-r--r-- | modules/github/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py index 5ed457ca..a8f6b294 100644 --- a/modules/github/__init__.py +++ b/modules/github/__init__.py @@ -247,7 +247,7 @@ class Module(ModuleManager.BaseModule): if ref and event["channel"].get_setting("auto-github", False): try: - result = self._get_info(event["channel"], match.group(0)) + result = self._get_info(event["channel"], ref) except utils.EventError: return if result: |
