浏览代码

fix error msg change condition

richard.she 1 年之前
父节点
当前提交
b8ce943b11
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      certbot_dns_dnspod/dns_dnspod.py

+ 1 - 1
certbot_dns_dnspod/dns_dnspod.py

@@ -123,6 +123,6 @@ class _DNSPodLexiconClient(dns_common_lexicon.LexiconClient):
                                   .format(domain_name, e, ' ({0})'.format(hint) if hint else ''))
 
     def _handle_general_error(self, e, domain_name):
-        if not (str(e).startswith('Domain name invalid') or str(e).find('域名不正确') >= 0):
+        if not (str(e).startswith('Domain name invalid') or str(e).find('当前域名有误') >= 0):
             return errors.PluginError('Unexpected error determining zone identifier for {0}: {1}'
                                       .format(domain_name, e))