summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-09-28 00:39:56 +0200
committeremkael <emkael@tlen.pl>2018-09-28 00:39:56 +0200
commit409f7a67427c6711177d2df97a8ae262594b6e91 (patch)
tree462c03250c902793fc559209b0c8396bad6a4331
parent34ca26ef666e69d2a5123d4ca37dde7845305a9e (diff)
Bugfix for absent config optioncustom-positioning
-rw-r--r--jfr_playoff/generator.py3
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)