Skip to content

Commit

Permalink
updated wggesucht crawler
Browse files Browse the repository at this point in the history
  • Loading branch information
calbec authored Oct 10, 2019
1 parent 2919e27 commit c56186c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flathunter/crawl_wggesucht.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_page(self, search_url, page_no):
def extract_data(self, soup):
entries = []

findings = soup.find_all(lambda e: e.has_attr('id') and e['id'].startswith('ad--'))
findings = soup.find_all(lambda e: e.has_attr('id') and e['id'].startswith('ad-'))
existingFindings = list(
filter(lambda e: e.has_attr('class') and not 'listenansicht-inactive' in e['class'], findings))

Expand Down

0 comments on commit c56186c

Please sign in to comment.