From d1bbd8cfe3075bf99f3e715f3b03cacbcb28a64d Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 30 Nov 2018 21:54:51 +0000 Subject: [PATCH] Add missing urllib.parse import (github.py) --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"