From 625c70580770b5bb00a64d15e14d15c623db21ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Wed, 2 Jul 2014 08:14:51 +0200 Subject: [PATCH] Update urls.py --- taiga/base/utils/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/base/utils/urls.py b/taiga/base/utils/urls.py index 2e5d71be..df3ece45 100644 --- a/taiga/base/utils/urls.py +++ b/taiga/base/utils/urls.py @@ -9,7 +9,7 @@ def build_url(path, scheme="http", domain="localhost"): def is_absolute_url(path): """Test wether or not `path` is absolute url.""" - return path.startswith("http") + return path.startswith("http") or path.startswith("https") def get_absolute_url(path):