diff options
Diffstat (limited to 'src/bidding_data.py')
-rw-r--r-- | src/bidding_data.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/bidding_data.py b/src/bidding_data.py index 5c5b50a..36c4404 100644 --- a/src/bidding_data.py +++ b/src/bidding_data.py @@ -337,12 +337,14 @@ class JFRBidding(object): used_files = [] for row in board_text_content.select('tr'): cells = row.select('td') - debug_string = ' '.join([ - ''.join([ - cc for cc - in c.contents if isinstance(cc, basestring)]).strip() - for c in cells]) - log.getLogger('links').debug('row: %s', debug_string) + log.getLogger('links').debug( + 'row: %s', + ' '.join([ + ''.join([ + cc for cc + in c.contents if isinstance(cc, basestring) + ]).strip() + for c in cells])) # traveller table rows for specific score entries # should have 11 cells if len(cells) == 11: |