diff options
author | emkael <emkael@tlen.pl> | 2018-09-28 00:39:56 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-09-28 00:39:56 +0200 |
commit | 409f7a67427c6711177d2df97a8ae262594b6e91 (patch) | |
tree | 462c03250c902793fc559209b0c8396bad6a4331 | |
parent | 34ca26ef666e69d2a5123d4ca37dde7845305a9e (diff) |
Bugfix for absent config optioncustom-positioning
-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 12a4365..782ce1d 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) |