From f8636d536d791914dc0fac84ab11929c77a3da95 Mon Sep 17 00:00:00 2001 From: Martijn Vermaat <martijn@vermaat.name> Date: Mon, 2 Nov 2015 11:04:54 +0100 Subject: [PATCH] Fix default service locations This should have been in #70 --- mutalyzer/config/default_settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mutalyzer/config/default_settings.py b/mutalyzer/config/default_settings.py index 06ba09ea..93d9d42b 100644 --- a/mutalyzer/config/default_settings.py +++ b/mutalyzer/config/default_settings.py @@ -71,11 +71,11 @@ NEGATIVE_LINK_CACHE_EXPIRATION = 60 * 60 * 24 * 30 # URL to the SOAP webservice WSDL document. Used to build the WSDL document # and for linking to it from the documentation page on the website. -SOAP_WSDL_URL = 'https://mutalyzer.nl/services/?wsdl' +SOAP_WSDL_URL = None # URL to the HTTP/RPC+JSON webservice root (without trailing slash). Used for # linking to it from the documentation page on the website. -JSON_ROOT_URL = 'https://mutalyzer.nl/json' +JSON_ROOT_URL = None # Is Piwik enabled? PIWIK = False -- GitLab