~lderan/ubuntu-bots/meeetingology-output

« back to all changes in this revision

Viewing changes to writers.py

  • Committer: Thomas Molloy
  • Date: 2014-02-08 12:05:30 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: beetyrootey@gmail.com-20140208120530-bc5o0h3m358y8fu1
fix for moinmoin output

Show diffs side-by-side

added added

removed removed

Lines of Context:
1227
1227
                    Votes.insert(0, "   *  Voters " + publicVoters)
1228
1228
                Votes.insert(0,"  * " + motion + " (For/Against/Abstained "+str(M.votes[m][0])+"/"+str(M.votes[m][2])+"/"+str(M.votes[m][1]) + ")")
1229
1229
                # differentiate denied votes somehow, strikethrough perhaps?
1230
 
                Votes.insert(0," * [[%(fullLogsFullURL)s#"+str(M.votes[m][3])+" "+m+"]]"))
 
1230
                Votes.insert(0," * [[%(fullLogsFullURL)s#"+str(M.votes[m][3])+" "+m+"]]")
1231
1231
        Votes = "\n".join(Votes) 
1232
1232
        return Votes
1233
1233