Fix dnspod general error

This commit is contained in:
tengattack
2021-05-07 00:50:45 +08:00
parent 70833e54c2
commit fc995c2939

View File

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