aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-30 21:54:51 +0000
committerGravatar jesopo2018-11-30 21:54:51 +0000
commitd1bbd8cfe3075bf99f3e715f3b03cacbcb28a64d (patch)
tree3f5e84b8b428e2208d4ee49d692b089d2594a793 /modules/github.py
parentSupport form-encoded github webhook data (diff)
signature
Add missing urllib.parse import (github.py)
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index 4a60a2eb..ed27e1a9 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -1,4 +1,4 @@
-import itertools, json
+import itertools, json, urllib.parse
from src import ModuleManager, utils
FORM_ENCODED = "application/x-www-form-urlencoded"