소스 검색

ensure string-format of auth-credentials

tags/v1.2.0
fabian 6 년 전
부모
커밋
b7e9fd98cd
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      certbot_pdns/pdnsapi.py

+ 3
- 3
certbot_pdns/pdnsapi.py 파일 보기

26
         elif isinstance(verify_cert, str):          # alternative: path to local cert is given as string
26
         elif isinstance(verify_cert, str):          # alternative: path to local cert is given as string
27
             self.verify_cert = verify_cert          # see requests-documentation for more info
27
             self.verify_cert = verify_cert          # see requests-documentation for more info
28
         
28
         
29
-    def set_http_auth(self, http_auth):             # credentials should be given as list containing two elements
30
-        if len(http_auth == 2):                     # first: username, second: password for http-basic auth
31
-            self.http_auth = (str(http_auth[0]), str(http_auth[1]))
29
+    def set_http_auth(self, http_auth):             # credentials should be given as list containing two string-elements
30
+        if len(http_auth) == 2:                     # first: username, second: password for http-basic auth
31
+            self.http_auth = (str(http_auth[0]), str(http_auth[1]))     # ensure right format of credentials
32
         
32
         
33
     def _query(self, uri, method, kwargs=None):
33
     def _query(self, uri, method, kwargs=None):
34
         headers = {
34
         headers = {

Loading…
취소
저장