Fix has_key() deprecation message. (Bug #232797)
authorfuzzyray <fuzzyray@gentoo.org>
Tue, 26 Aug 2008 19:51:33 +0000 (19:51 -0000)
committerfuzzyray <fuzzyray@gentoo.org>
Tue, 26 Aug 2008 19:51:33 +0000 (19:51 -0000)
svn path=/; revision=509

trunk/ChangeLog
trunk/src/glsa-check/glsa.py

index 1fc3478db4cd58ae0150907f3c361e8fc4aa00db..b100110abb56647ee4f0da89413e6629ede34337 100644 (file)
@@ -1,4 +1,5 @@
 2008-08-26: Paul Varner <fuzzyray@gentoo.org>
+       * glsa-check: Fix has_key() deprecation message. (Bug #232797)
        * revdep-rebuild: Update fix for Bug 232270 to utilize better patch
        from Ian Abbott.
 
@@ -6,8 +7,6 @@
        * gentoolkit: Fix find_packages and find_installed_packages to print
        a warning instead of a traceback when an InvalidAtom exception occurs.
        (Bug #234358)
-
-2008-08-22: Paul Varner <fuzzyray@gentoo.org>
        * equery: Fix equery belongs to strip multiple slashes from path
        names. (Bug #234584)
 
index 5aeb7fe5a15ac591537708d4796dda4aa24e881c..4c8f28059e4e994e91fc7692b9c48170197f990c 100644 (file)
@@ -122,7 +122,7 @@ def checkconfig(myconfig):
                "PRINTWIDTH": "76"
        }
        for k in mysettings.keys():
-               if not myconfig.has_key(k):
+               if k not in myconfig:
                        myconfig[k] = mysettings[k]
        return myconfig