Skip to content

Commit

Permalink
implement correct parsing of combo links
Browse files Browse the repository at this point in the history
  • Loading branch information
amcameron committed Jul 31, 2011
1 parent e8f7502 commit 03558fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RedditParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def handle_starttag(self, tag, attrs):
for (attr, val) in attrs:
if attr == 'href':
self.RecordLink = True
self.Links.append(val)
self.Links.extend(val.split("+"))

def handle_data(self, data):
if self.RecordSub:
Expand Down

0 comments on commit 03558fe

Please sign in to comment.