Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
GPGExt: fix problem with hardcoded profile url for ebay profile verif…
…ication.
  • Loading branch information
Daniel Folkinshteyn committed Apr 12, 2011
1 parent 26a52ca commit 69d78f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPGExt/plugin.py
Expand Up @@ -164,7 +164,7 @@ def ebay(self, irc, msg, args, ebaynick, nick):

# ebay special: process ebay page
parser = etree.HTMLParser()
tree = etree.parse('http://myworld.ebay.com/mndrix', parser)
tree = etree.parse(url, parser)
context = etree.iterwalk(tree, tag='div')
for _, element in context:
for item in element.items():
Expand Down

0 comments on commit 69d78f7

Please sign in to comment.