Fix BLT export format
This commit is contained in:
parent
913aac26ca
commit
8333dd7c2d
@ -1,6 +1,6 @@
|
||||
# Eos - Verifiable elections
|
||||
# pyRCV - Preferential voting counting
|
||||
# Copyright © 2016–2017 RunasSudo (Yingtong Li)
|
||||
# Copyright © 2016-2021 RunasSudo (Yingtong Li)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
@ -41,10 +41,10 @@ def writeBLT(election, q_num, seats, withdrawn=[]):
|
||||
|
||||
for candidate in flat_choices:
|
||||
if candidate.party:
|
||||
electionLines.append("'{} – {}'".format(candidate.name, candidate.party))
|
||||
electionLines.append('"{} – {}"'.format(candidate.name, candidate.party))
|
||||
else:
|
||||
electionLines.append("'{}'".format(candidate.name))
|
||||
electionLines.append('"{}"'.format(candidate.name))
|
||||
|
||||
electionLines.append("'{} – {}'".format(election.name, question.prompt))
|
||||
electionLines.append('"{} – {}"'.format(election.name, question.prompt))
|
||||
|
||||
return electionLines
|
||||
|
Loading…
Reference in New Issue
Block a user