From 2ccebaa4a08c4815a86505e069aa59a0e82c8915 Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 24 Jun 2019 19:32:32 +0100 Subject: [PATCH] Add missing `import re` --- modules/git_webhooks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git_webhooks/__init__.py b/modules/git_webhooks/__init__.py index 81b34979..4f86a1ff 100644 --- a/modules/git_webhooks/__init__.py +++ b/modules/git_webhooks/__init__.py @@ -1,4 +1,4 @@ -import itertools, json, urllib.parse +import itertools, json, re, urllib.parse from src import ModuleManager, utils from . import colors, gitea, github