Skip to content

Commit

Permalink
Fix (tested) for entries regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
niclashoyer committed Jul 2, 2014
1 parent 2b64fde commit 350616d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon.py
Expand Up @@ -31,7 +31,7 @@
blogsregexp = re.compile('Startseite Videoblog(.*)subressort', re.MULTILINE|re.DOTALL)
blogurlregexp = re.compile('a href="(\/videoblog\/[^"]+)"')
blogtitleregexp = re.compile('">([^<]+)<\/a><\/li>')
entriesregexp = re.compile('<a.*href="(\/videoblog\/[^"]+)">.*<h4 class="headline">([^<]*)<\/h4>', re.MULTILINE|re.DOTALL)
entriesregexp = re.compile('a\thref="(\/videoblog\/[^"]+)">\n[^\n]*\n<h4 class="headline">([^<]*)<\/h4>', re.MULTILINE|re.DOTALL)
teaserregexp = re.compile('img[^>]+src="(\/multimedia\/bilder\/[^"]+teaser+[^"]+)')

def removeNonAscii(s):
Expand Down

0 comments on commit 350616d

Please sign in to comment.