projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
224136f
)
Fix quoting for bug 109739
author
Alec Warner
<antarus@gentoo.org>
Thu, 1 Jun 2006 01:40:30 +0000
(
01:40
-0000)
committer
Alec Warner
<antarus@gentoo.org>
Thu, 1 Jun 2006 01:40:30 +0000
(
01:40
-0000)
svn path=/main/trunk/; revision=3443
pym/getbinpkg.py
patch
|
blob
|
history
diff --git
a/pym/getbinpkg.py
b/pym/getbinpkg.py
index 197d777bf1a775112e4205ffb04be4546ecaf0fb..0bd0d36226a0c58f7d22645c0c0e8fa5add09b7d 100644
(file)
--- a/
pym/getbinpkg.py
+++ b/
pym/getbinpkg.py
@@
-5,7
+5,7
@@
from output import *
-import htmllib,HTMLParser,string,formatter,sys,os,xpak,time,tempfile,base64
+import htmllib,HTMLParser,string,formatter,sys,os,xpak,time,tempfile,base64
,urllib2
try:
import cPickle
@@
-69,7
+69,7
@@
class ParseLinks(HTMLParser.HTMLParser):
for x in attrs:
if x[0] == 'href':
if x[1] not in self.PL_anchors:
- self.PL_anchors.append(
x[1]
)
+ self.PL_anchors.append(
urllib2.unquote(x[1])
)
def create_conn(baseurl,conn=None):