]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
call self._config_win32_search() with the right variable
authorBob Halley <halley@dnspython.org>
Thu, 27 Jul 2006 06:13:23 +0000 (06:13 +0000)
committerBob Halley <halley@dnspython.org>
Thu, 27 Jul 2006 06:13:23 +0000 (06:13 +0000)
ChangeLog
dns/resolver.py

index 86ed2773ae1b0245cc67e4df6908755122888fa6..41486aaf621c302f97ac4268f66ebb1d136db6d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-26  Bob Halley  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
 
        * dns/resolver.py (Answer): Add more support for the sequence
index 9e8339aa85d2daf080f0cd915a4ed23f9fd434bb..289160345e16fa8edee3d08ec09292926abbd935 100644 (file)
@@ -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."""