Revert last commit in base.utils.urls

remotes/origin/enhancement/email-actions
David Barragán Merino 2014-07-02 13:29:29 +02:00
parent 625c705807
commit a2b8a38016
1 changed files with 1 additions and 1 deletions

View File

@ -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") or path.startswith("https")
return path.startswith("http")
def get_absolute_url(path):