From a9a6d7cd7265d6b8de696d00c970d714a472f9c8 Mon Sep 17 00:00:00 2001 From: Javi Date: Mon, 27 May 2019 19:13:57 +0200 Subject: [PATCH] http Site fixed --- mmdc_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmdc_modules.py b/mmdc_modules.py index 04fa124..d3a1a6c 100644 --- a/mmdc_modules.py +++ b/mmdc_modules.py @@ -17,7 +17,7 @@ years = range(2015, (datetime.now()).year + 1) # Site Level ######### def mwsite(host, path): #returns wiki site object - site = Site(host, path) + site = Site(('http',host), path) return site