Fix typos from the previous commit.
authorZac Medico <zmedico@gentoo.org>
Fri, 12 Jan 2007 08:29:09 +0000 (08:29 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 12 Jan 2007 08:29:09 +0000 (08:29 -0000)
svn path=/main/trunk/; revision=5599

pym/getbinpkg.py

index 40f3c64204e8dcb0f8d175f6bba864996f3c77e6..462da429d27ae766ec9f65183c44eaf53a3a5d60 100644 (file)
@@ -6,7 +6,7 @@
 if not hasattr(__builtins__, "set"):
        from sets import Set as set
 
-#from output import *
+from output import red, yellow, green
 import htmllib,HTMLParser,formatter,sys,os,xpak,time,tempfile,base64,urllib2
 
 try:
@@ -58,7 +58,7 @@ class ParseLinks(HTMLParser.HTMLParser):
        def get_anchors_by_suffix(self,suffix):
                newlist = []
                for x in self.PL_anchors:
-                       if x.endswith(prefix):
+                       if x.endswith(suffix):
                                if x not in newlist:
                                        newlist.append(x[:])
                return newlist