mirror of
https://gitlab.com/vylion/velascobot.git
synced 2025-04-19 21:46:35 +02:00
📝 Output correction for /answer.
This commit is contained in:
parent
f015e4bc60
commit
70ca9856c2
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ class Speaker(object):
|
||||||
try:
|
try:
|
||||||
answ = float(words[1])
|
answ = float(words[1])
|
||||||
answ = scribe.setAnswer(answ)
|
answ = scribe.setAnswer(answ)
|
||||||
update.message.reply_text("Period of speaking set to {}.".format(answ))
|
update.message.reply_text("Answer probability set to {}.".format(answ))
|
||||||
scribe.store(None)
|
scribe.store(None)
|
||||||
except:
|
except:
|
||||||
update.message.reply_text("Format was confusing; answer probability unchanged from {}.".format(scribe.answer()))
|
update.message.reply_text("Format was confusing; answer probability unchanged from {}.".format(scribe.answer()))
|
||||||
|
|
Loading…
Reference in a new issue