From: Bob Halley Date: Thu, 27 Jul 2006 06:13:23 +0000 (+0000) Subject: call self._config_win32_search() with the right variable X-Git-Tag: v1.5.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3793f754a39cecc834a73c5a35e48c1439e40819;p=thirdparty%2Fdnspython.git call self._config_win32_search() with the right variable --- diff --git a/ChangeLog b/ChangeLog index 86ed2773..41486aaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-07-26 Bob Halley + + * dns/resolver.py (Resolver._config_win32_fromkey): fix + cut-and-paste error where we passed the wrong variable to + self._config_win32_search(). Thanks to David Arnold for finding + the bug and submitting a patch. + 2006-07-20 Bob Halley * dns/resolver.py (Answer): Add more support for the sequence diff --git a/dns/resolver.py b/dns/resolver.py index 9e8339aa..28916034 100644 --- a/dns/resolver.py +++ b/dns/resolver.py @@ -413,7 +413,7 @@ class Resolver(object): except WindowsError: search = None if search: - self._config_win32_search(servers) + self._config_win32_search(search) def read_registry(self): """Extract resolver configuration from the Windows registry."""