Fix Arnie going out of range.
Fix link on home stats top user to use the user_id.
This commit is contained in:
@@ -1044,5 +1044,5 @@ class WebInterface(object):
|
||||
'I\'m a cop you idiot!'
|
||||
]
|
||||
|
||||
random_number = randint(0, len(quote_list))
|
||||
random_number = randint(0, len(quote_list) - 1)
|
||||
return quote_list[int(random_number)]
|
Reference in New Issue
Block a user