소스 검색

Try/except urlparse calls.

Andrew Butcher 8 년 전
부모
커밋
9b0d793ead
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      roles/openshift_facts/library/openshift_facts.py

+ 5 - 1
roles/openshift_facts/library/openshift_facts.py

@@ -944,7 +944,11 @@ def format_url(use_ssl, hostname, port, path=''):
     netloc = hostname
     if (use_ssl and port != '443') or (not use_ssl and port != '80'):
         netloc += ":%s" % port
-    return urlparse.urlunparse((scheme, netloc, path, '', '', ''))
+    try:
+        url = urlparse.urlunparse((scheme, netloc, path, '', '', ''))
+    except AttributeError:
+        url = urlunparse((scheme, netloc, path, '', '', ''))
+    return url
 
 def get_current_config(facts):
     """ Get current openshift config