diff options
author | emkael <emkael@tlen.pl> | 2018-07-10 16:34:14 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-07-10 16:34:14 +0200 |
commit | 5cf43985f96daa156d1b201ce4f5b8e925c7c711 (patch) | |
tree | 4f255afd6149c0d006f586688ecad3cce113354a | |
parent | 216d9673887196a0b8c2475081b115944bbff233 (diff) |
Sanitizing config optionsinfo-boxes
-rw-r--r-- | jfr_playoff/generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jfr_playoff/generator.py b/jfr_playoff/generator.py index ef83a73..a90cf77 100644 --- a/jfr_playoff/generator.py +++ b/jfr_playoff/generator.py @@ -190,7 +190,8 @@ class PlayoffGenerator(object): finishing_places = set() for phase in grid: grid_x = col_no * self.page['width'] + (col_no + 1) * self.page['margin'] \ - if self.page['starting_position_indicators'] \ + if 'starting_position_indicators' in self.page \ + and self.page['starting_position_indicators'] \ else col_no * (self.page['width'] + self.page['margin']) grid_boxes += self.get_phase_header(phase, grid_x) match_height = canvas_size[1] / len(phase.matches) |