mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
bookie: make an error more informative
This commit is contained in:
parent
f99d86ecab
commit
2a650ff5fe
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ def Bet(link,cmd):
|
|||
|
||||
outcomes = redis_smembers(tname+':outcomes')
|
||||
if not outcome in outcomes:
|
||||
link.send("%s is not a valid outcome, try one of: %s" % (outcome, ", ".join(outcomes)))
|
||||
link.send("%s is not a valid outcome for %s, try one of: %s" % (outcome, book_name, ", ".join(outcomes)))
|
||||
return
|
||||
if redis_hexists(tname,identity+":outcome"):
|
||||
previous_outcome = redis_hget(tname,identity+":outcome")
|
||||
|
|
Loading…
Reference in a new issue