|
|
@@ -178,7 +178,10 @@ def process_scratchings(this_data, this_venue):
|
|
|
late_scratchings = scrape_scratchings(div, this_venue)
|
|
|
scratchings.update(late_scratchings)
|
|
|
|
|
|
- assert len(scratchings) == int(scratchings_count), 'len(scratchings) {} == scratchings_count {}'.format(
|
|
|
- len(scratchings), scratchings_count)
|
|
|
- # pprint(scratchings)
|
|
|
+ # assert len(scratchings) == int(scratchings_count), 'len(scratchings) {} == scratchings_count {}'.format(
|
|
|
+ # len(scratchings), scratchings_count)
|
|
|
+ if len(scratchings) != int(scratchings_count):
|
|
|
+ print('len(scratchings) {} == scratchings_count {}'.format(
|
|
|
+ len(scratchings), scratchings_count))
|
|
|
+ pprint(scratchings)
|
|
|
return scratchings
|