From 3d5554d9ce115f59e148cf4b84d28af60f05bc64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 29 Aug 2018 14:20:23 +0200 Subject: [PATCH] BLENDER_ID_ENDPOINT should end with a slash There is always a path component in a URL. --- config_local.example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_local.example.py b/config_local.example.py index a05d631..d5be8c8 100644 --- a/config_local.example.py +++ b/config_local.example.py @@ -2,7 +2,7 @@ import os DEBUG = True -BLENDER_ID_ENDPOINT = 'http://id.local:8000' +BLENDER_ID_ENDPOINT = 'http://id.local:8000/' SERVER_NAME = 'cloud.local:5001' SCHEME = 'http'