diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-09-19 14:23:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-19 14:23:44 +0000 |
commit | be620c74d492cb2e4b9ad3055832e36849a3ac6b (patch) | |
tree | 5d919e23cf404d4aa8d999dd7dfc6f7b30d2d48e /tosca2heat/tosca-parser/toscaparser/utils | |
parent | 86b894e80fcb29f0354109730ee37bff20b1a89b (diff) | |
parent | f977b94e012828cd2a905b9b841aff33c4b732f8 (diff) |
Merge "Update the upstream of tosco-parser and heat-translator to stable release 0.6/0.5"
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/utils')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/utils/urlutils.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/utils/urlutils.py b/tosca2heat/tosca-parser/toscaparser/utils/urlutils.py index 34b6032..546acca 100644 --- a/tosca2heat/tosca-parser/toscaparser/utils/urlutils.py +++ b/tosca2heat/tosca-parser/toscaparser/utils/urlutils.py @@ -35,7 +35,11 @@ class UrlUtils(object): URL. """ parsed = urlparse(path) - return bool(parsed.scheme) and bool(parsed.netloc) + if parsed.scheme == 'file': + # If the url uses the file scheme netloc will be "" + return True + else: + return bool(parsed.scheme) and bool(parsed.netloc) @staticmethod def join_url(url, relative_path): |