bookie: make an error more informative

This commit is contained in:
moneromooo 2015-01-31 19:14:48 +00:00
parent f99d86ecab
commit 2a650ff5fe
1 changed files with 1 additions and 1 deletions

View File

@ -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")