Fixed bug 256013 and bug 256103, thanks to William Arlofski, Michael A. Smith and...
authoridl0r <idl0r@gentoo.org>
Mon, 4 May 2009 22:10:26 +0000 (22:10 -0000)
committeridl0r <idl0r@gentoo.org>
Mon, 4 May 2009 22:10:26 +0000 (22:10 -0000)
Whitespace.

svn path=/; revision=579

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

index efb9e913338af8584301273a8139cc801b6d6116..fe383315b82bea08ed7b7a068c6e023c44dc2228 100755 (executable)
@@ -17,7 +17,7 @@ try:
 except ImportError:
        from output import *
 
-from getopt import getopt,GetoptError
+from getopt import getopt, GetoptError
 
 __program__ = "glsa-check"
 __author__ = "Marius Mauch <genone@gentoo.org>"
@@ -230,7 +230,7 @@ def summarylist(myglsalist, fd1=sys.stdout, fd2=sys.stderr):
                fd1.write(")")
                if list_cve:
                        fd1.write(" "+(",".join([r[:13] for r in myglsa.references if r[:4] in ["CAN-", "CVE-"]])))
-               fd1.write("\n")         
+               fd1.write("\n")
        return 0
 
 if mode == "list":
@@ -328,12 +328,12 @@ if mode == "mail":
        # color doesn't make any sense for mail
        nocolor()
 
-       if glsaconfig.has_key("PORTAGE_ELOG_MAILURI"):
+       if "PORTAGE_ELOG_MAILURI" in glsaconfig:
                myrecipient = glsaconfig["PORTAGE_ELOG_MAILURI"].split()[0]
        else:
                myrecipient = "root@localhost"
        
-       if glsaconfig.has_key("PORTAGE_ELOG_MAILFROM"):
+       if "PORTAGE_ELOG_MAILFROM" in glsaconfig:
                myfrom = glsaconfig["PORTAGE_ELOG_MAILFROM"]
        else:
                myfrom = "glsa-check"
index 5a7a5253bbcc297e8915d31dc54389391d89fc68..8e0df422a6f037c31d31cec3a2e3db1ae844ac84 100644 (file)
@@ -12,7 +12,7 @@ glsa\-check <\fIoption\fP> [\fIglsa\-list\fP]
 This tool is used to locally monitor and manage Gentoo Linux Security Advisories.
 Please read:
 .br 
-http://www.gentoo.org/proj/en/portage/glsa\-integration.xml
+http://www.gentoo.org/security
 .br 
 before reporting a bug.
 .LP
index 4c8f28059e4e994e91fc7692b9c48170197f990c..dfd9acdac8a30a916282939d91b8cf7f9af14c0b 100644 (file)
@@ -21,7 +21,7 @@ import codecs
 import re
 import xml.dom.minidom
 
-if sys.version_info[0:2] < (2,3):
+if sys.version_info[0:2] < (2, 3):
        raise NotImplementedError("Python versions below 2.3 have broken XML code " \
                                                                +"and are not supported")
 
@@ -32,8 +32,8 @@ except ImportError:
        import portage
 
 # Note: the space for rgt and rlt is important !!
-opMapping = {"le": "<=", "lt": "<", "eq": "=", "gt": ">", "ge": ">=", 
-                        "rge": ">=~", "rle": "<=~", "rgt": " >~", "rlt": " <~"}
+opMapping = {"le": "<=", "lt": "<", "eq": "=", "gt": ">", "ge": ">=",
+               "rge": ">=~", "rle": "<=~", "rgt": " >~", "rlt": " <~"}
 NEWLINE_ESCAPE = "!;\\n"       # some random string to mark newlines that should be preserved
 SPACE_ESCAPE = "!;_"           # some random string to mark spaces that should be preserved
 
@@ -510,7 +510,7 @@ class Glsa:
                self.packages = {}
                for p in self.affected.getElementsByTagName("package"):
                        name = p.getAttribute("name")
-                       if not self.packages.has_key(name):
+                       if not name in self.packages:
                                self.packages[name] = []
                        tmp = {}
                        tmp["arch"] = p.getAttribute("arch")
@@ -563,7 +563,7 @@ class Glsa:
                                if i < len(self.bugs)-1:
                                        outstream.write(", ")
                                else:
-                                       outstream.write("\n")                           
+                                       outstream.write("\n")
                if self.background:
                        outstream.write("\n"+wrap(self.background, width, caption="Background:       "))
                outstream.write("\n"+wrap(self.description, width, caption="Description:      "))