summaryrefslogtreecommitdiff
path: root/ausbutler
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-05-04 17:21:24 +0200
committeremkael <emkael@tlen.pl>2017-05-09 02:51:09 +0200
commit01fd749e24fd6fe1a0099ec4477307ed9c25dce3 (patch)
treec63ba168598fd75a0cd0299c27c7bc206682a98b /ausbutler
parentbe579d2034f168e332bd203ffeb45b3eea42a3ea (diff)
Fixes for single-segment rounds
Diffstat (limited to 'ausbutler')
-rw-r--r--ausbutler/interface.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/ausbutler/interface.py b/ausbutler/interface.py
index d793bc9..052d910 100644
--- a/ausbutler/interface.py
+++ b/ausbutler/interface.py
@@ -62,14 +62,17 @@ class Interface(object):
aus_b.corrected_score = old_norm[2] if old_norm is not None else aus_b.score
aus_b.board_count = row[2]
self.session.add(aus_b)
- column_name = re.compile(r'^seg(\d+)_(\d+)$')
+ column_name = re.compile(r'^seg(\d+)(_(\d+))?$')
for butler in self.session.query(Butler).all():
for column, value in butler.__dict__.iteritems():
column_match = re.match(column_name, column)
if column_match:
if value is not None:
round_no = int(column_match.group(1), base=10)
- segm_no = int(column_match.group(2))
+ if Constants.segmentsperround > 1:
+ segm_no = int(column_match.group(3))
+ else:
+ segm_no = 1
if round_no < Constants.rnd or (
round_no == Constants.rnd and segm_no <= Constants.segm):
aus_b = AusButler()
@@ -193,6 +196,7 @@ class Interface(object):
'logoh': Constants.logoh,
'round_no': round_no,
'segment_no': segment_no,
+ 'per_round': Constants.segmentsperround,
'results': results,
'boards': range(
first_board,
@@ -273,6 +277,7 @@ class Interface(object):
'percent_threshold': Constants.minbutler,
'segments': segments,
'segment_limit': self.config['segments_in_table_limit'],
+ 'per_round': Constants.segmentsperround,
'above_threshold': above_threshold,
'below_threshold': below_threshold,
'date': datetime.now().strftime('%Y-%m-%d'),