소스 검색

Explicitly convert token to string

tags/v1.1.1
Марко М. Костић (Marko M. Kostić) 6 년 전
부모
커밋
7f0a9d81e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      certbot_pdns/PdnsApiAuthenticator.py

+ 1
- 1
certbot_pdns/PdnsApiAuthenticator.py 파일 보기

@@ -74,7 +74,7 @@ class PdnsApiAuthenticator:
74 74
 
75 75
         logger.debug("Found zone %s for domain %s" % (zone["name"], domain))
76 76
 
77
-        res = self.api.replace_record(zone["name"], "_acme-challenge." + domain + ".", "TXT", 1, "\"" + token + "\"", False, False)
77
+        res = self.api.replace_record(zone["name"], "_acme-challenge." + domain + ".", "TXT", 1, "\"" + token.decode('utf-8') + "\"", False, False)
78 78
         if res is not None:
79 79
             raise errors.PluginError("Bad return from PDNS API when adding record: %s" % res)
80 80
 

Loading…
취소
저장