Adding question marks
This commit is contained in:
parent
8be6672555
commit
966b4b26e3
|
|
@ -953,8 +953,12 @@ class TriviaTime(callbacks.Plugin):
|
|||
self.storage.insertGameLog(self.channel, self.numAsked,
|
||||
self.lineNumber, self.question)
|
||||
|
||||
tempQuestion = self.question.rstrip()
|
||||
if tempQuestion[-1:] != '?':
|
||||
tempQuestion += ' ?'
|
||||
|
||||
# bold the q
|
||||
questionText = '%s' % self.question
|
||||
questionText = '%s' % (tempQuestion)
|
||||
|
||||
# KAOS? report # of answers
|
||||
if len(self.answers) > 1:
|
||||
|
|
|
|||
Loading…
Reference in New Issue